How to detect more than one object in one image with surf detector
in which direction i have to think to solve that problem? with which functions is that may possible? what else do i may need? it is not about face detection. the objects are from the same and if that is solved from different classes.
thanks in advance for any suggestions.
floyd
surf does not detect objects, only keypoints/features in a scene.
You should look into algorithms for recognition of multiple objects instead of a single object. So instead of using RANSAC implemented in OpenCV try searching for another algorithms that allow multiple objects recognition (for example https://hal.archives-ouvertes.fr/hal-... )