Ask Your Question

ray's profile - activity

2017-09-11 15:34:13 -0600 received badge  Student (source)
2015-08-26 11:23:14 -0600 asked a question How to implement a pre built template for use with TLD?

I have successfully implemented TLD in openCV. Is there anyway I can train the detector once, save what it learned on to a file and then use the file to initialise the tracker at some other point of time for further tracking?

2015-08-25 08:08:15 -0600 received badge  Editor (source)
2015-08-25 07:58:07 -0600 asked a question Using TLD on OpenCV

I am trying to implement a TLD real time tracker on Open CV. However I couldn't find any concise tutorials as to how to correctly implement a tracker. Please guide me as to how to do so.

Is there anyway to store the learned data to a data file or something like that so that next time the tracker is done, it reads the data from the configuration file and hence it is not necessary to draw bounding boxes around the object of interest every time?

I also wish to be able to detect multiple objects using TLD. Say the detector was first trained to detect cats and then cars. Assume that the detector saved the learned data to files cats.data and cars.data respectively. Is there anyway to initialise the tracker with both these config files so that it detects both the objects?

2015-08-24 07:17:46 -0600 asked a question Best method to detect multiple objects

I am working on an application that is required to detect statues, paintings etc. Which method is the best to detect these objects? I tried this method. However this technique is not accurate . I also tried the Haar Cascade classifier. However the application that I am working on is large and hence it is required to train very large number of such images, which will be very tedious if we proceed with Haar Cascades.

Is there any other method that can detect objects with reasonable accuracy and at the same time quick enough? Even if so how can one detect multiple objects( multiple paintings, statues etc) ?