We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8f004 commit 81535f5Copy full SHA for 81535f5
machine-learning/contour-detection/contour-detector.py
@@ -12,7 +12,7 @@
12
gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)
13
14
# create a binary thresholded image
15
-_, binary = cv2.threshold(gray, sys.argv[2], 255, cv2.THRESH_BINARY_INV)
+_, binary = cv2.threshold(gray, int(sys.argv[2]), 255, cv2.THRESH_BINARY_INV)
16
# show it
17
plt.imshow(binary, cmap="gray")
18
plt.show()
0 commit comments