From 8a6b011c9d7c760f63d00c9a022a25f257d387b8 Mon Sep 17 00:00:00 2001 From: Cole Deck Date: Sun, 8 Dec 2019 14:34:27 -0600 Subject: [PATCH] fancy animation --- .gitignore | 1 + main.py | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..427ec6b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.autogit \ No newline at end of file diff --git a/main.py b/main.py index 5379f23..5668174 100644 --- a/main.py +++ b/main.py @@ -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) \ No newline at end of file