Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- shell
- 알고리즘
- 턱걸이
- 프로그래밍
- Computer Vision
- 백준알고리즘
- 회귀
- 코딩
- 리눅스
- 영상처리
- 텐서플로우
- python
- 공부
- 백준
- 프로세스
- Windows 10
- 쉘
- CV
- c
- C언어
- Windows10
- OpenCV
- linux
- 딥러닝
- 운영체제
- C++
- error
- 학습
- 시스템프로그래밍
- TensorFlow
Archives
- Today
- Total
목록창띄우기 (1)
줘이리의 인생적기

이미지를 열어서 픽셀에 접근하는 함수를 짜 보고, imageread 함수와 imageshow 함수에 대해 알아보겠습니다. 1번. (0,0) ~ (200,200)까지 검은색으로 채우기 2번. 사진 (100,100) ~ (200,200)까지 검은색으로 채우기 코드 원형 설명 #이미지 불러오기 def imageRead(openpath, flag=cv2.IMREAD_UNCHANGED): image = cv2.imread(openpath, flag) if image is not None: print("Image Opened") return image else: print("Image Not Opened") print("Program Abort") exit() #창 띄우기 def imageShow(imagename..
공부/Computer Vision(py)
2020. 7. 8. 08:00