Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yutaroyamanaka/004b83db15cd587128b9e601d231b662 to your computer and use it in GitHub Desktop.
Save yutaroyamanaka/004b83db15cd587128b9e601d231b662 to your computer and use it in GitHub Desktop.
import sys
import cv2
img = cv2.imread(sys.argv[1])
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
ret, binary = cv2.threshold(gray, 0, 255, cv2.THRESH_OTSU)
print(binary.shape)
cv2.imwrite("output.jpg", binary)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment