update process_img parameter
This commit is contained in:
parent
c3d177dc0c
commit
b2ee0cad41
@ -38,7 +38,7 @@ def sbt_predict(image_url, engine) -> None:
|
||||
os.makedirs(save_dir, exist_ok = True)
|
||||
tmp_image_path = os.path.join(save_dir, f"{uuid.uuid4()}.jpg")
|
||||
cv2.imwrite(tmp_image_path, img)
|
||||
outputs = process_img(img_path=tmp_image_path,
|
||||
outputs = process_img(img=tmp_image_path,
|
||||
save_dir=save_dir,
|
||||
engine=engine,
|
||||
export_all=False, # False
|
||||
@ -71,7 +71,6 @@ def predict(page_numb, image_url):
|
||||
"""
|
||||
|
||||
sbt_result = sbt_predict(image_url, engine=sbt_engine)
|
||||
print(sbt_result)
|
||||
output_dict = {
|
||||
"document_type": "invoice",
|
||||
"document_class": " ",
|
||||
|
Loading…
Reference in New Issue
Block a user