From 7201c508722a97cc7ccadcdcfb626badb3ed0549 Mon Sep 17 00:00:00 2001 From: MostafaWassel Date: Mon, 2 Sep 2024 14:41:10 +0300 Subject: [PATCH] Fix: visualization of cells structure in inference.py --- src/inference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inference.py b/src/inference.py index 564dd7685..b41f46437 100644 --- a/src/inference.py +++ b/src/inference.py @@ -910,7 +910,7 @@ def main(): tokens = [] if args.mode == 'recognize': - extracted_table = pipe.recognize(img, tokens, out_objects=args.objects, out_cells=args.csv, + extracted_table = pipe.recognize(img, tokens, out_objects=args.objects, out_cells=args.cells, out_html=args.html, out_csv=args.csv) print("Table(s) recognized.")