Skip to content

Commit

Permalink
fix: broken isort
Browse files Browse the repository at this point in the history
  • Loading branch information
jandom committed Jun 2, 2024
1 parent 4f78bca commit e9a6978
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions qreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,8 @@
import numpy as np
from pyzbar.pyzbar import Decoded, ZBarSymbol
from pyzbar.pyzbar import decode as decodeQR
from qrdet import (
BBOX_XYXY,
CONFIDENCE,
CXCY,
PADDED_QUAD_XY,
POLYGON_XY,
QUAD_XY,
WH,
QRDetector,
crop_qr,
)
from qrdet import (BBOX_XYXY, CONFIDENCE, CXCY, PADDED_QUAD_XY, POLYGON_XY,
QUAD_XY, WH, QRDetector, crop_qr)

_SHARPEN_KERNEL = np.array(
((-1.0, -1.0, -1.0), (-1.0, 9.0, -1.0), (-1.0, -1.0, -1.0)), dtype=np.float32
Expand Down

0 comments on commit e9a6978

Please sign in to comment.