Ask Your Question

huhu's profile - activity

2016-03-03 08:49:04 -0600 commented question Mobile Object Detection through Client-Server framework

thanks, I will read about it in detail.

2016-03-03 07:12:10 -0600 commented question Mobile Object Detection through Client-Server framework

It does not matter how much it will take to train new objects on the server. If user detects any object which is not available on the server (in existed trained classifiers list) then it will run training algorithm.

Problem I am facing is automatic annotation of objects which is only possible to achieve manually.

Basic model can be tested with opencv android using existed xml files on mobile. But this is not what i am looking for. If it is not possible to train new objects which user sends to server from mobile app.

Any other possibility which can be achievable without any manual step for object detection?.

2016-03-03 05:49:22 -0600 commented question Mobile Object Detection through Client-Server framework

that is why I am asking for other methods, which might be considered. SIFT, SURF are also not be considered because of copyrights. Blob detection?...

2016-03-03 05:31:35 -0600 asked a question Mobile Object Detection through Client-Server framework

I have worked with cascade classifier for object detection from webcam using opencv and c++. Now I am implementing it on client-server framework where client take image or record video and send it over the server where it trains and do the rest automatically. And then app identify the object using trained classifier for this object.

In this cascade method, most of the things can be achieved on the server automatically except the automatic annotation to create positive.txt file format. Which then pass to opencv_createsamples utility to create a .vec file.

Also latent SVM can be used for object detection but learning methods are not available in opencv.

If this is not possible with opencv, then i think it is not possible to perform object detection automatically using this technique which follows client-server framework.

Anything else which can be considered for object detection/recognition?. maybe where we don't need to train classifier or do things manually?.