|
@@ -12,8 +12,9 @@ import base64
|
|
|
import io
|
|
|
import requests
|
|
|
import json
|
|
|
+from pathlib import Path
|
|
|
|
|
|
-ocr = PaddleOCR(use_angle_cls=True, lang="ch", use_gpu=False)
|
|
|
+# ocr = PaddleOCR(use_angle_cls=True, lang="ch", use_gpu=False)
|
|
|
app = Flask(__name__)
|
|
|
img_dir = Path('imgs')
|
|
|
img_dir.mkdir(exist_ok=True)
|
|
@@ -241,9 +242,18 @@ def get_file_from_url(url_file: str, target_path: str):
|
|
|
return target_path
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
- port = os.environ.get('FLASK_PORT', '')
|
|
|
- if port.isalnum() and int(port) > 0:
|
|
|
- port = int(port)
|
|
|
- else:
|
|
|
- port = 5000
|
|
|
- app.run(host='0.0.0.0', port=port, debug=True)
|
|
|
+ # port = os.environ.get('FLASK_PORT', '')
|
|
|
+ # if port.isalnum() and int(port) > 0:
|
|
|
+ # port = int(port)
|
|
|
+ # else:
|
|
|
+ # port = 5000
|
|
|
+ # app.run(host='0.0.0.0', port=port, debug=True)
|
|
|
+ test_dir = Path('img_test')
|
|
|
+ count = 1
|
|
|
+ start = time.perf_counter()
|
|
|
+ for file in test_dir.iterdir():
|
|
|
+ st = time.perf_counter()
|
|
|
+ result = ocr.ocr(str(file), cls=True)
|
|
|
+ print(f'第{count}张图片耗时:{format(time.perf_counter() - st)}')
|
|
|
+ count += 1
|
|
|
+ print(f'20张图片总耗时:{format(time.perf_counter() - start)}')
|