How to get individual columns values into a list using Python
23:35 28 Mar 2023

I have an image which is the extracted row of a table and it looks like this: enter image description here

I want to extract each column which is separated by vertical lines into a list.

The expected output will be like this:

['Sl No','Description of Goods','HSN/SAC','Quantity','Rate','per','Amount']

The image is not from a DB, It is just an image that is extracted by some ML model.

How can I achieve this?

python opencv machine-learning deep-learning paddleocr