File size: 328 Bytes
b42373a
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import time
from ocr import read_chassis

start = time.time()
text, conf = read_chassis("images/chassis/26995.jpg")
end = time.time()
print(f"First run  : {text} | {end - start:.2f}s")

start = time.time()
text, conf = read_chassis("images/chassis/26995.jpg")
end = time.time()
print(f"Second run : {text} | {end - start:.2f}s")