Skip to content

Commit a4e054c

Browse files
authored
Update DetectPlates.py
1 parent 946ff1c commit a4e054c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DetectPlates.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def findPossibleCharsInScene(imgThresh):
130130

131131
imgThreshCopy = imgThresh.copy()
132132

133-
imgContours, contours, npaHierarchy = cv2.findContours(imgThreshCopy, cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE) # find all contours
133+
contours, npaHierarchy = cv2.findContours(imgThreshCopy, cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE) # find all contours
134134

135135
height, width = imgThresh.shape
136136
imgContours = np.zeros((height, width, 3), np.uint8)

0 commit comments

Comments
 (0)