먼저 필요한 opencv를 import 해줍니다.
import cv2
image = cv2.imread('data/images/truth.png')
#구분 값을 먼저 설정
thresh = 255
#위의 특정값보다 큰 값들은 모두 255로 변경
maxValue = 255
cv2.imshow('Original',image)
#쓰레숄딩 적용된 이미지 만들기
th,dst = cv2.threshold(image,thresh,maxValue,cv2.THRESH_BINARY)
cv2.imshow('thresholded image',dst)
cv2.waitKey(0)
cv2.destroyAllWindows()
'OpenCV' 카테고리의 다른 글
Python(파이썬)에서 OpenCV를 이용해 perspective correction 사진 교정하기 (0) | 2022.01.11 |
---|---|
Python(파이썬)에서 OpenCV를 이용해 homography 특징점 매칭하기 (0) | 2022.01.11 |
Python(파이썬)에서 OpenCV를 이용해 이미지 회전하기 (0) | 2021.12.31 |
Python(파이썬)에서 OpenCV를 이용해 이미지 closing 검은색 노이즈 없애기 (0) | 2021.12.31 |
Python(파이썬)에서 OpenCV를 이용해 이미지 opening 흰색 노이즈 없애기 (0) | 2021.12.31 |