Skip to content

Commit 81535f5

Browse files
committed
fixed some bug in contour detection tutorial
1 parent ad8f004 commit 81535f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine-learning/contour-detection/contour-detector.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)
1313

1414
# create a binary thresholded image
15-
_, binary = cv2.threshold(gray, sys.argv[2], 255, cv2.THRESH_BINARY_INV)
15+
_, binary = cv2.threshold(gray, int(sys.argv[2]), 255, cv2.THRESH_BINARY_INV)
1616
# show it
1717
plt.imshow(binary, cmap="gray")
1818
plt.show()

0 commit comments

Comments
 (0)