mirror of https://github.com/CIRCL/AIL-framework
fix: [qrcode extractor] fix invalid jpeg
parent
526566720b
commit
8d0f85294a
|
@ -51,7 +51,11 @@ class QrCodeReader(AbstractModule):
|
|||
def extract_qrcode(self, path):
|
||||
qr_codes = False
|
||||
contents = []
|
||||
try:
|
||||
image = cv2.cvtColor(cv2.imread(path), cv2.COLOR_BGR2RGB)
|
||||
except cv2.error:
|
||||
image = cv2.imread(path)
|
||||
|
||||
try:
|
||||
decodeds = decode(image)
|
||||
for decoded in decodeds:
|
||||
|
|
Loading…
Reference in New Issue