Skip to content
Snippets Groups Projects
Commit 9c9224d8 authored by Marie Generali's avatar Marie Generali :worried:
Browse files

resolve threads

parent 9944314e
No related branches found
No related tags found
No related merge requests found
......@@ -299,13 +299,13 @@ def run(
dan_model = DAN(device, temperature)
dan_model.load(model, parameters, charset, mode="eval")
im = read_image(image, scale=scale)
# Load image and pre-process it
if image_max_width:
h, w, c = read_image(image, scale=1).shape
_, w, _ = read_image(image, scale=1).shape
ratio = image_max_width / w
im = read_image(image, ratio)
else:
im = read_image(image, scale=scale)
logger.info("Image loaded.")
im_p = dan_model.preprocess(im)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment