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):
|
def extract_qrcode(self, path):
|
||||||
qr_codes = False
|
qr_codes = False
|
||||||
contents = []
|
contents = []
|
||||||
image = cv2.cvtColor(cv2.imread(path), cv2.COLOR_BGR2RGB)
|
try:
|
||||||
|
image = cv2.cvtColor(cv2.imread(path), cv2.COLOR_BGR2RGB)
|
||||||
|
except cv2.error:
|
||||||
|
image = cv2.imread(path)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
decodeds = decode(image)
|
decodeds = decode(image)
|
||||||
for decoded in decodeds:
|
for decoded in decodeds:
|
||||||
|
|
Loading…
Reference in New Issue