Does OpenCV 3.0 actually have car detection? [closed]

asked 2014-09-30 11:06:53 -0600

clingmanr gravatar image

updated 2014-09-30 11:42:34 -0600

berak gravatar image

The release notes for the OpenCV 3.0 Alpha say that it includes "Car detection using Waldboost, ACF by Vlad Shakhuro and Nikita Manovich". I haven't been able to find it thus far. I have found the functions for waldboost and acffeature in the opencv_contrib repository, but I haven't been able to find any implementations or any other mention of car detection anywhere else.

Does anyone else have any more information on car detection in OpenCV, or were the release notes just overstating the inclusion of Waldboost and ACF for the new release?

edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by sturkmen
close date 2017-09-26 09:07:42.397210

Comments

the code is all there, but you will have to train your own model (adas/tools/fcw_train, fcw_detect).

(also read here)

berak gravatar imageberak ( 2014-09-30 11:11:52 -0600 )edit

That's the conclusion that I was coming to as well, but I was just thrown off since I would think that would better be described as "Object detection using Waldboost, ACF" rather than "Car detection using Waldboost, ACF". It just seems a bit odd to me to bill it as "car detection" when it really isn't directly related to cars at all besides the fact that you can train your own classifier for them.

clingmanr gravatar imageclingmanr ( 2014-09-30 16:50:20 -0600 )edit

real-time car detection can be achieved using Viola Jones framework with traincascade, which uses Adaboost, Waldboost is an optimal algorithm for Adaboost.

jsky gravatar imagejsky ( 2015-05-30 01:22:56 -0600 )edit

Hi, jsky, can you give more details on how to train a waldboost detector?

teddyluo gravatar imageteddyluo ( 2017-10-23 21:49:27 -0600 )edit