OpenCV - Extract Regions From An Image
Hi
I am looking through the various OpenCV algorithms to try and find a solution to a problem I am currently having. I am trying to extract regions of interest from an image of a newspaper cover. For example, in the image below, I would like to categorise the heading "Everything but equality", the image below it and the text below that as a region and extract it from the image.
Can anyone offer any advice on what techniques I should be investigating in order to solve this
So, you need to identify main headlines and the picture that go with them in different newspaper pages? It is an interesting problem, mainly due to its high complexity.
Yes its complex alright and I understand that no one solution would work. Would you recommend any sort of pattern or template matching?
Well, just from the top of my head, I would start by trying an OCR algorithm (which is basically does template matching). These algorithms can identify characters such as letters and numbers. Then you'd be able to identify head lines by size of font. As for image detection, I'd start by trying color segmentation methods. Either way, you've got a long way to go
@Damo See this answer might be helpful...