Spaces:
Runtime error
Runtime error
Update ocr_engine.py
Browse files- ocr_engine.py +9 -6
ocr_engine.py
CHANGED
@@ -3,33 +3,34 @@ import numpy as np
|
|
3 |
import cv2
|
4 |
import re
|
5 |
|
|
|
6 |
reader = easyocr.Reader(['en'], gpu=False)
|
7 |
|
8 |
def extract_weight_from_image(pil_img):
|
9 |
try:
|
10 |
img = np.array(pil_img)
|
11 |
|
12 |
-
# Resize
|
13 |
max_dim = 1000
|
14 |
height, width = img.shape[:2]
|
15 |
if max(height, width) > max_dim:
|
16 |
scale = max_dim / max(height, width)
|
17 |
img = cv2.resize(img, None, fx=scale, fy=scale, interpolation=cv2.INTER_AREA)
|
18 |
|
19 |
-
# OCR
|
20 |
results = reader.readtext(img)
|
21 |
print("DEBUG OCR RESULTS:", results)
|
22 |
|
23 |
raw_texts = []
|
24 |
weight_candidates = []
|
25 |
-
|
26 |
fallback_weight = None
|
27 |
fallback_conf = 0.0
|
28 |
|
29 |
-
for _, text, conf in results:
|
30 |
original = text
|
31 |
cleaned = text.lower().strip()
|
32 |
|
|
|
33 |
cleaned = cleaned.replace(",", ".")
|
34 |
cleaned = cleaned.replace("o", "0").replace("O", "0")
|
35 |
cleaned = cleaned.replace("s", "5").replace("S", "5")
|
@@ -39,14 +40,16 @@ def extract_weight_from_image(pil_img):
|
|
39 |
|
40 |
raw_texts.append(f"{original} → {cleaned} (conf: {round(conf, 2)})")
|
41 |
|
42 |
-
# Save fallback if
|
43 |
if cleaned and cleaned.replace(".", "").isdigit() and not fallback_weight:
|
44 |
fallback_weight = cleaned
|
45 |
fallback_conf = conf
|
46 |
|
|
|
47 |
if cleaned.count(".") <= 1 and re.fullmatch(r"\d{2,4}(\.\d{1,3})?", cleaned):
|
48 |
weight_candidates.append((cleaned, conf))
|
49 |
|
|
|
50 |
if weight_candidates:
|
51 |
best_weight, best_conf = sorted(weight_candidates, key=lambda x: -x[1])[0]
|
52 |
elif fallback_weight:
|
@@ -54,7 +57,7 @@ def extract_weight_from_image(pil_img):
|
|
54 |
else:
|
55 |
return "Not detected", 0.0, "\n".join(raw_texts)
|
56 |
|
57 |
-
#
|
58 |
if "." in best_weight:
|
59 |
int_part, dec_part = best_weight.split(".")
|
60 |
int_part = int_part.lstrip("0") or "0"
|
|
|
3 |
import cv2
|
4 |
import re
|
5 |
|
6 |
+
# Load EasyOCR reader
|
7 |
reader = easyocr.Reader(['en'], gpu=False)
|
8 |
|
9 |
def extract_weight_from_image(pil_img):
|
10 |
try:
|
11 |
img = np.array(pil_img)
|
12 |
|
13 |
+
# Resize very large images
|
14 |
max_dim = 1000
|
15 |
height, width = img.shape[:2]
|
16 |
if max(height, width) > max_dim:
|
17 |
scale = max_dim / max(height, width)
|
18 |
img = cv2.resize(img, None, fx=scale, fy=scale, interpolation=cv2.INTER_AREA)
|
19 |
|
20 |
+
# OCR recognition
|
21 |
results = reader.readtext(img)
|
22 |
print("DEBUG OCR RESULTS:", results)
|
23 |
|
24 |
raw_texts = []
|
25 |
weight_candidates = []
|
|
|
26 |
fallback_weight = None
|
27 |
fallback_conf = 0.0
|
28 |
|
29 |
+
for _, (text, conf) in results:
|
30 |
original = text
|
31 |
cleaned = text.lower().strip()
|
32 |
|
33 |
+
# Fix common OCR misreads
|
34 |
cleaned = cleaned.replace(",", ".")
|
35 |
cleaned = cleaned.replace("o", "0").replace("O", "0")
|
36 |
cleaned = cleaned.replace("s", "5").replace("S", "5")
|
|
|
40 |
|
41 |
raw_texts.append(f"{original} → {cleaned} (conf: {round(conf, 2)})")
|
42 |
|
43 |
+
# Save fallback if no match later
|
44 |
if cleaned and cleaned.replace(".", "").isdigit() and not fallback_weight:
|
45 |
fallback_weight = cleaned
|
46 |
fallback_conf = conf
|
47 |
|
48 |
+
# Match proper weight format: 75.02, 97.2, 105
|
49 |
if cleaned.count(".") <= 1 and re.fullmatch(r"\d{2,4}(\.\d{1,3})?", cleaned):
|
50 |
weight_candidates.append((cleaned, conf))
|
51 |
|
52 |
+
# Choose best candidate
|
53 |
if weight_candidates:
|
54 |
best_weight, best_conf = sorted(weight_candidates, key=lambda x: -x[1])[0]
|
55 |
elif fallback_weight:
|
|
|
57 |
else:
|
58 |
return "Not detected", 0.0, "\n".join(raw_texts)
|
59 |
|
60 |
+
# Strip unnecessary leading zeros
|
61 |
if "." in best_weight:
|
62 |
int_part, dec_part = best_weight.split(".")
|
63 |
int_part = int_part.lstrip("0") or "0"
|