Object Detection
TensorBoard
PyTorch
English
ultralytics
v8
ultralyticsplus
yolov8
yolo
vision
table detection
table extraction
table classification
document analysis
unstructured document
unstructured table extraction
structured table extraction
unstructured table detection
structured table detection
Eval Results
I am having multiple tables and want only a specified one how can I achieve, and also how to extract the table
#10
by
KushalHemanth
- opened
I am having around 3-4 tables and i want only a specified table how can i classify that. Like if i want the table which is bigger is that the right approach. Later on how can i extract the data from the table.
Instead of finding the larger table,. I would suggest looking into the table data, which looks relevant to you after performing the OCR.
As author explained, after the detection of the tables a tensor result=results[0] is being generated. This tensor contains all the info for ['bordered', 'borderless'] classes (0,1) which have been classified, as well as their bounded boxes :) If you crop the image containing each table, you can perform OCR to extract the data inside the table.