fancy animation

cascade
Cole Deck 4 years ago
parent 6bfeb1237c
commit 8a6b011c9d

1
.gitignore vendored

@ -0,0 +1 @@
.autogit

@ -151,7 +151,7 @@ for c in cnts:
orig = image.copy()
# loop over the contours individually
for c in cnts:
orig = image.copy()
#orig = image.copy()
num += 1
# if the contour is not sufficiently large, ignore it
if cv2.contourArea(c) < 100 or pixelsPerMetric is None:
@ -181,10 +181,9 @@ for c in cnts:
(blbrX, blbrY) = midpoint(bl, br)
# compute the midpoint between the top-left and top-right points,
# followed by the midpoint between the top-righ and bottom-right
# followed by the midpoint between the top-right and bottom-right
(tlblX, tlblY) = midpoint(tl, bl)
(trbrX, trbrY) = midpoint(tr, br)
# draw the midpoints on the image
#cv2.circle(orig, (int(tltrX), int(tltrY)), 5, (255, 0, 0), -1)
#cv2.circle(orig, (int(blbrX), int(blbrY)), 5, (255, 0, 0), -1)
@ -290,6 +289,6 @@ for c in cnts:
# show the output image
cv2.imshow("Item Sorter", orig)
cv2.waitKey(500)
cv2.waitKey(100)
cv2.waitKey(0)
Loading…
Cancel
Save