본문 바로가기

**226

[HTML] 프로젝트 설치, 파일 생성, 기본태그 설치 및 생성 1. atom 설치 A hackable text editor for the 21st Century At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it. atom.io 2. 프로젝트 파일 생성 3. 디렉토리에서 실행 기본 태그 사용 (강조, 밑줄) 2022. 4. 11.
[OpenCV python] saturation과 wrapping 비교 원본 영상 import cv2 from IPython.core.display import Image from google.colab.patches import cv2_imshow path = '/content/drive/MyDrive/Image_processing/butterfly.bmp' img = cv2.imread(path,cv2.IMREAD_GRAYSCALE) img_stu = cv2.add(img,200) //saturation cv2_imshow(img_stu) img_wrap = img+200 //wrapping cv2_imshow(img_wrap) saturation, wrapping 2022. 4. 4.
[OpenCV python] 그레이스케일로 영상 불러오기 import cv2 from google.colab.patches import cv2_imshow path = '/content/drive/MyDrive/Image_processing/butterfly.bmp' img = cv2.imread(path,cv2.IMREAD_GRAYSCALE) //그레이스케일 cv2_imshow(img) 2022. 4. 4.
[OpenCV python] 구글 코랩 환경 구축 1. 코랩 가입 Welcome To Colaboratory Run, share, and edit Python notebooks colab.research.google.com 2. 구글 드라이브 접속 내 드라이브 - > 더보기 - > 연결 할 앱 더보기 -> 코랩 설치 3. 코랩이 연결 되었다면 구글 드라이브의 "내 드라이브" 폴더 하위에 "Colab Notebooks" 폴더가 생성됨 4. 구글 드라이브와 연동 드라이브 마운트, 액세스 허용 5. 연동 확인 코랩에서 [drive>MtDrive>Colab Notebooks] 와 구글 드라이브에서 [내 드라이브>Colab Notebooks] 폴더가 동일한 것 확인 2022. 4. 4.
[BAEKJOON] No.21312 C++ 21312번: 홀짝 칵테일 정진이는 특별한 음료를 가지고 있다. 음료들은 정수로 표현되는 고유 번호를 가지고 있다. 정진이는 이 음료들을 섞어 만든 칵테일을 만든다. 이 칵테일은 홀짝 칵테일이라 부르는데, 홀짝 칵 www.acmicpc.net 하나하나 홀수를 걸러내는 코드 #include using namespace std; int main(int argc, const char * argv[]) { int a, b, c, sum = 0; cin >> a >> b >> c; if (a % 2 == 1) { // a 홀수 if (b % 2 == 1) { // b 홀수 if (c % 2 == 1) cout 2022. 3. 4.
[BACKJOON] No.2164 C언어 카드2 자료구조 큐 이용 카드 2와 출력형식이 완전히 같지는 않은데, 비슷한 문제라서 올려본다. 2164번: 카드2 N장의 카드가 있다. 각각의 카드는 차례로 1부터 N까지의 번호가 붙어 있으며, 1번 카드가 제일 위에, N번 카드가 제일 아래인 상태로 순서대로 카드가 놓여 있다. 이제 다음과 같은 동작을 카드가 www.acmicpc.net Throwing cards Utilize the Generic implementation of the Queue developed in class(that you can also find in the book) to solve this problem. In case that your program have memory leaks, points will be deduc.. 2021. 12. 11.