I need to identify the text on an image that is merged with 2 pieces. The image has the merged line on it. Is there a way to remove the merge line? to identify the text on it.
this is my image
I need to identify the text on an image that is merged with 2 pieces. The image has the merged line on it. Is there a way to remove the merge line? to identify the text on it.
this is my image
Yeap, it is possible to remove that line but you may have to work a bit harder. The first task is to identify lines. For this, you may use Houge Transformation or RANSAC or any other techniques. This might be helpful for you as well. I would suggest you start with Houge because of lines in your cause has some definite angles which might be easier to detect lines. Then you need to apply some morphological operation like erosion and dilation for smoothing the image. Also, have a look structural analysis and shape descriptors to reduce the false positive and false negative detections. Work on this way and if something not clear, ask again.