mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
removed useless pre preprocess step
This commit is contained in:
parent
20c920adc9
commit
fe6cd012f5
@ -12,7 +12,7 @@ detector = cv2.QRCodeDetector()
|
||||
def get_values(window: WindowClient):
|
||||
values = None
|
||||
for _ in range(5):
|
||||
img = window.processed_image(func=_image_pre_process)
|
||||
img = window.processed_image()
|
||||
if img is None:
|
||||
logging.debug("Couldn't capture window.")
|
||||
continue
|
||||
@ -22,7 +22,7 @@ def get_values(window: WindowClient):
|
||||
if not window.crop:
|
||||
logging.debug("FishyQR not found.")
|
||||
continue
|
||||
img = window.processed_image(func=_image_pre_process)
|
||||
img = window.processed_image()
|
||||
|
||||
values = _get_values_from_image(img)
|
||||
if not values:
|
||||
@ -34,15 +34,6 @@ def get_values(window: WindowClient):
|
||||
return values
|
||||
|
||||
|
||||
def _image_pre_process(img):
|
||||
scale_percent = 100 # percent of original size
|
||||
width = int(img.shape[1] * scale_percent / 100)
|
||||
height = int(img.shape[0] * scale_percent / 100)
|
||||
dim = (width, height)
|
||||
img = cv2.resize(img, dim, interpolation=cv2.INTER_AREA)
|
||||
return img
|
||||
|
||||
|
||||
def _get_qr_location(image):
|
||||
"""
|
||||
code from https://stackoverflow.com/a/45770227/4512396
|
||||
|
Loading…
Reference in New Issue
Block a user