Skip to content
Advertisement

Python split image into multiple pieces by horizontal dashed lines

I have a bunch of image like this one:

enter image description here

Where the yellow box are contents of different profiles (text), where each section is divided by the dashed lines (no the straight lines). So what I need is to split the image into multiple single images by the dashed lines. So far I have tried a lot of python and cv2 examples with the Hough Line Transform but none of my attempts works in the detection.

Advertisement

Answer

Following @efirvida’s comment, here’s a very basic approach on how to do it.

What it does is simply checking whether each line of pixels in the given picture is equal in value to the first line containing a dashed line, and then crop the picture to split it into multiple pictures…

JavaScript

It quite certainly isn’t a perfect solution but I hope it gives you clues on how to improve your current algorithm!

It gave me these pictures for the one you provided:

  • first split

enter image description here

  • second split

enter image description here

  • third split

enter image description here

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement