update photo count and remove break
This commit is contained in:
parent
237aa6cc18
commit
c5f990d065
@ -8,7 +8,7 @@ import sys
|
|||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
number_of_photos_in_scan = 3
|
number_of_photos_in_scan = 4
|
||||||
|
|
||||||
crop_height = 2.0 # offset in percent
|
crop_height = 2.0 # offset in percent
|
||||||
crop_width = 2.0 # offset in percent
|
crop_width = 2.0 # offset in percent
|
||||||
@ -54,7 +54,7 @@ def auto_crop_scan(src_path, output_dir):
|
|||||||
if img_gray is None:
|
if img_gray is None:
|
||||||
raise Exception("unable to convert image to grayscale")
|
raise Exception("unable to convert image to grayscale")
|
||||||
|
|
||||||
# apply thresholding on the gray image to create a binary image
|
# apply threshold on the gray image to create a binary image
|
||||||
ret, thresh = cv2.threshold(img_gray, 127, 255, 0)
|
ret, thresh = cv2.threshold(img_gray, 127, 255, 0)
|
||||||
|
|
||||||
# find the contours
|
# find the contours
|
||||||
@ -103,7 +103,6 @@ def auto_crop_scan(src_path, output_dir):
|
|||||||
|
|
||||||
cv2.imwrite(export_file_path, img_crop)
|
cv2.imwrite(export_file_path, img_crop)
|
||||||
index = index + 1
|
index = index + 1
|
||||||
break
|
|
||||||
else:
|
else:
|
||||||
raise Exception("unable to find all photos in scan")
|
raise Exception("unable to find all photos in scan")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user