Detecting the shape of irregular objects [closed]
I am using haar cascade to detect my target objects and it does the job very well in my case 70% overall detection rate.
Here is an example of the detected objects:
Now i'd like to improve the detection such that it doesn't only detect the target objects region as a rectangle, i'd like to detect it accurately by its shape, is SURF is what i am looking for? "Given that the objects' shapes scope is wide ".
Please take a look of my positive samples album to get an idea of what i'm dealing with.
Here is an album of the positive samples.
Target objects in the images are the kidneys
And if so can i use SURF in conjunction with Haar cascade, is that a good practice "Would improve the accuracy?" or it would only slow down the process?
@StevenPuttemans Any thoughts?
Surf is not a shape matcher but a keypoint detector. I am unsure what would be the best approach for this, but I guess that a floodfill on an edge map from the center will get you quite far.