Detection of texture portions in a image [closed]
I am working on a project and i need to remove the areas in a image which matches with my texture image. What kind of techniques i can use to successfully accomplish the task in openCV? I need to further scale it to video processing
sounds like 'inpainting'
I was looking to do template matching ... do you know the difference between template matching and inpainting ?
As far as I know, there is not already implemented code in Opencv to do such a job. You should write your own detector. I think that wavelets based techniques are the most fitted for this and wavelets are not difficult to calculate in Opencv,
template matching is a method to find something, inpainting a method to remove (or replace) something (interpolating from the borders)
i'd say, e.g. this is pretty impressing (and will hopefully get merged into contrib soon)
@berak that is indeed very impressive!