■ threshold 함수를 사용해 이미지 임계값을 처리하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import cv2 imageNDArray = cv2.imread("source.jpg") grayscaleImageNDArray = cv2.cvtColor(imageNDArray, cv2.COLOR_BGR2GRAY) thresholdTuple = cv2.threshold(grayscaleImageNDArray, 120, 255, cv2.THRESH_BINARY) cv2.imwrite("target.jpg", thresholdTuple[1]) cv2.imshow("threshold image", thresholdTuple[1]) cv2.waitKey(0) cv2.destroyAllWindows() |