Spaces:
Runtime error
Runtime error
Commit
·
1377edd
1
Parent(s):
f79250f
Update optic1.py
Browse files
optic1.py
CHANGED
@@ -62,7 +62,7 @@ def optic1(ans_txt,pathImage, save_images= True):
|
|
62 |
imgWarpColored_1 = cv2.warpPerspective(img, matrix, (wrap_v, wrap_h))
|
63 |
imgWarpGray_1 = cv2.cvtColor(imgWarpColored_1,cv2.COLOR_BGR2GRAY)
|
64 |
# imgThresh_1 = cv2.threshold(imgWarpGray_1, 170, 255,cv2.THRESH_BINARY_INV )[1]
|
65 |
-
imgThresh_1 = cv2.threshold(imgWarpColored_1,0,255,cv2.
|
66 |
|
67 |
#second buyuk icin perspektif
|
68 |
secondContour=functions.reorder(secondContour)
|
@@ -72,7 +72,7 @@ def optic1(ans_txt,pathImage, save_images= True):
|
|
72 |
imgWarpColored_2 = cv2.warpPerspective(img, matrix_2, (wrap_v, wrap_h))
|
73 |
imgWarpGray_2 = cv2.cvtColor(imgWarpColored_2,cv2.COLOR_BGR2GRAY)
|
74 |
#imgThresh_2 = cv2.threshold(imgWarpGray_2, 170, 255,cv2.THRESH_BINARY_INV )[1]
|
75 |
-
imgThresh_2 = cv2.threshold(imgWarpColored_2,0,255,cv2.
|
76 |
|
77 |
#student id
|
78 |
bubbles = functions.split_num(imgThresh_2, 10, 10)
|
|
|
62 |
imgWarpColored_1 = cv2.warpPerspective(img, matrix, (wrap_v, wrap_h))
|
63 |
imgWarpGray_1 = cv2.cvtColor(imgWarpColored_1,cv2.COLOR_BGR2GRAY)
|
64 |
# imgThresh_1 = cv2.threshold(imgWarpGray_1, 170, 255,cv2.THRESH_BINARY_INV )[1]
|
65 |
+
imgThresh_1 = cv2.threshold(imgWarpColored_1,0,255,cv2.THRESH_BINARY_INV + cv2.THRESH_OTSU)[1]
|
66 |
|
67 |
#second buyuk icin perspektif
|
68 |
secondContour=functions.reorder(secondContour)
|
|
|
72 |
imgWarpColored_2 = cv2.warpPerspective(img, matrix_2, (wrap_v, wrap_h))
|
73 |
imgWarpGray_2 = cv2.cvtColor(imgWarpColored_2,cv2.COLOR_BGR2GRAY)
|
74 |
#imgThresh_2 = cv2.threshold(imgWarpGray_2, 170, 255,cv2.THRESH_BINARY_INV )[1]
|
75 |
+
imgThresh_2 = cv2.threshold(imgWarpColored_2,0,255,cv2.THRESH_BINARY_INV + cv2.THRESH_OTSU)[1]
|
76 |
|
77 |
#student id
|
78 |
bubbles = functions.split_num(imgThresh_2, 10, 10)
|