fancy animation

This commit is contained in:
Cole Deck 2019-12-08 14:34:27 -06:00
parent 6bfeb1237c
commit 8a6b011c9d
2 changed files with 4 additions and 4 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.autogit

View File

@ -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)