본문 바로가기

**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.