fix: [qrcode extractor] filter invalid image

pull/607/merge
terrtia 2024-10-02 15:36:07 +02:00
parent ee02a72288
commit 86af7dd749
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class QrCodeReader(AbstractModule):
image = cv2.cvtColor(cv2.imread(path), cv2.COLOR_BGR2RGB) image = cv2.cvtColor(cv2.imread(path), cv2.COLOR_BGR2RGB)
except cv2.error: except cv2.error:
self.logger.warning(f'Invalid image: {self.obj.get_global_id()}') self.logger.warning(f'Invalid image: {self.obj.get_global_id()}')
return [] return False, []
try: try:
decodeds = decode(image) decodeds = decode(image)