Reputation: 3421
I want to extract the information from a scanned table and store it a csv. Right now my table extraction algorithm does the following steps.
This algorithm is working fine for digital born pdfs and most of the scanned documents. But, Some of the documents have a noisy table and thus its not identifying the lines correctly.
Here is a sample image in which my algorithm fails.
These are the operations I am doing on this table. 1.Gaussian blur
2.Otsu thresholding
3.Morphological opening
4.Canny edge detection
5.filtered lines,as you can see the lines are clearly not identified correctly.
Can anyone please suggest better method for extracting horizontal and vertical lines from this kind of less quality scans.
Thanks in advance!!
Upvotes: 7
Views: 6019
Reputation: 3421
I found a perfect solution in this blog. https://medium.com/coinmonks/a-box-detection-algorithm-for-any-image-containing-boxes-756c15d7ed26
Here,We are doing morphological transformations using a vertical kernel to detect vetical lines and horizontal kernel to detect horizontal lines and then combining them to get all the required lines.
Upvotes: 4
Reputation: 154
The problem is and always will be is that you don't have perfect lines. One solution for this approach can be:
Upvotes: 1
Reputation: 758
The problem might be in HoughLinesTransform()
You can try using: HoughLinesTransformP()
For HoughLinesTranform() to work perfectly, the lines need to be perfect. From the image you have provided, you can see the distortion clearly which is clearly causing the method to fail.
Try dilating your image first. Image Dilation in Python.
Upvotes: 0