Compare commits
3 Commits
d371bd0492
...
e986b8dd00
Author | SHA1 | Date |
---|---|---|
Kabooshki | e986b8dd00 | |
Kabooshki | f22510d186 | |
Kabooshki | 84c4122d5f |
24
main.py
24
main.py
|
@ -1,9 +1,9 @@
|
||||||
import cv2
|
import cv2
|
||||||
import pytesseract
|
import pytesseract
|
||||||
import os
|
import os
|
||||||
|
import numpy
|
||||||
directory = 'images'
|
directory = 'images'
|
||||||
|
|
||||||
k = 1
|
|
||||||
# iterate over files in
|
# iterate over files in
|
||||||
# that directory
|
# that directory
|
||||||
for filename in os.listdir(directory):
|
for filename in os.listdir(directory):
|
||||||
|
@ -20,9 +20,21 @@ for filename in os.listdir(directory):
|
||||||
print(data)
|
print(data)
|
||||||
if os.path.isfile(f'images/{data}.jpg') == False:
|
if os.path.isfile(f'images/{data}.jpg') == False:
|
||||||
os.rename(f'{f}', f'images/{data}.jpg')
|
os.rename(f'{f}', f'images/{data}.jpg')
|
||||||
else:
|
elif os.path.isfile(f'images/{data}.jpg') == True:
|
||||||
cv2.imshow(ROI)
|
cv2.imshow(data, ROI)
|
||||||
cv2.waitKey(50)
|
cv2.waitKey(1)
|
||||||
os.rename(f'{f}', f'images/{data}.{k}.jpg')
|
manpage = input("please input the number on the page (if the title is correct, enter nothing)")
|
||||||
k = k + 1
|
print(manpage)
|
||||||
|
if manpage == "\n":
|
||||||
|
rng = numpy.random.default_rng().random()
|
||||||
|
os.rename (f'images/{data}.jpg', f'images/{data}.review-{rng}.jpg')
|
||||||
|
os.rename(f'{f}', f'images/{data}.jpg')
|
||||||
|
elif manpage != "\n":
|
||||||
|
if os.path.isfile(f'images/{manpage}.jpg') == True:
|
||||||
|
rng = numpy.random.default_rng().random()
|
||||||
|
os.rename (f'images/{manpage}.jpg', f'images/{manpage}.review-{rng}.jpg')
|
||||||
|
os.rename(f'{f}', f'images/{manpage}.jpg')
|
||||||
|
elif os.path.isfile(f'images/{manpage}.jpg') == False:
|
||||||
|
os.rename(f'{f}', f'images/{manpage}.jpg')
|
||||||
|
cv2.destroyAllWindows()
|
||||||
cv2.destroyAllWindows()
|
cv2.destroyAllWindows()
|
||||||
|
|
Loading…
Reference in New Issue