Detecting particular objects in the image i.e image segmentation with opencv

强颜欢笑 提交于 2019-12-09 13:20:43

问题


I have to select any particular object visible in my image on i-phone. Basically my project is to segment image objects on the basis of my touch.

The method I am following is to first detect contours of the image and then select a particular sequence based on finger touch. Is there any other method which would be more robust because I have to run it on video frames?

I am using OpenCV and iphone for the project. PLease help if there is any other idea which has been implemented or is feasible to implement.


回答1:


Have you looked at SIFT or SURF implementations? They both track object features and are resilient (to a certain degree) to rotation, translation and scale.

Also check out FAST which is a corner detection algorithm which might help you, they have an app on the app store showing how quick it is too.



来源:https://stackoverflow.com/questions/5405109/detecting-particular-objects-in-the-image-i-e-image-segmentation-with-opencv

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!