I'm new to image processing, i have to process image file jpeg1 as following:
1.Detect the text as "Text to detect!" on jpeg1
2.Detect the rectangle region as "Rectangle to be detected" and merge another image seal.jpeg to the rectangle area.
I don't know how to achieve that with C#?
My image file jpeg1 as:
The raw image jpeg1 as:
The seal image to be merged as:
I can help with your question 2. I don't use C#, and I just wrote a simple Matlab code to extract the rectangular area you want. I assume opencv has those image processing toolbox as well.Please see my comments below.
The result:
Regarding the text detection, I think it is really tough without some prior information because you have so many text involved. It will be better that you know the approximate position of your text to detect, then we can try to look for the text within a much smaller region. Besides, it is also tricky to tune the threshold when you are targeting some specific text that probably has different intensity in gray image. By the way, I cannot process the image you provide because there is a strong rectangular region you added onto the text to be detected, which made me extract that region very easily, whereas it is not the case in reality.