OpenCV has AdaBoost algorithm function.
And gpu version also is provided.
For using detection, we prepare the trained xml file.
Although we can train some target using adaboost algorithm in opencv functions, there are several trained xml files in the opencv folder. (mostly in opencv/sources/data/haarcascades )
I will use "haarcascade_frontalface_alt.xml" file for face detection example.
gpu and cpu both versions use xml file.
more detail refer to this source code.
The source code is included 2 version of cpu and gpu.
result is ..
gpu is faster than cpu version (but exactly they may not be same condition..)
blue boxes are result of cpu.
red boxes are results of gpu.
The results are not important because it can be different by parameters values.
<code start>
<code end>
Github
https://github.com/MareArts/AdaBoost-Face-Detection-test-using-OpenCV
#Tags
cvtColor, CascadeClassifier, CascadeClassifier_GPU, detectMultiScale,
Subscribe to:
Post Comments (Atom)
-
EMD(earth mover distance) method is very good method to compare image similarity. But processing time is slow. For using the EMD compare, ...
-
This error is because of schedule{ step:0 learning_rate: 0.00019... } So just change whole optimizer block to latest models optimiz...
-
Open powershell by admin and put this on terminal > net stop wuauserv #stop service update > net stop bits #stop bits > Remove-Ite...
-
error message: remote: Resolving deltas: 100% (23/23), completed with 8 local objects. remote: error: Trace: 2ffe6017a58c483deb760c27365127...
-
Refer to this page about official reference of ICF http://docs.opencv.org/3.0.0/d6/dc8/classcv_1_1xobjdetect_1_1ICFDetector.html Other pa...
-
If you meet this error studying juliaset in CUDA by example book capture 4. calling a __host__ function("cuComplex::cuComplex") ...
-
Logistic Classifier The logistic classifier is similar to equation of the plane. W is weight vector, X is input vector and y is output...
-
AMD GPU Programming Primer Threads · Waves · Memory · Tile Distribution · Vector Loads · MFMA ...
-
Google Coral USB Edge TPU Implementation Guide 1. Installation and Troubleshooting 1.1 Hardware Requirements Google Coral USB Accelerator ...
-
Here is good reference for this subject: https://aws.amazon.com/premiumsupport/knowledge-center/lambda-layer-simulated-docker/ https://dev....
gpu::CascadeClassifier_GPU ada_gpu; having error in this line and
ReplyDeleteDo you use same opencv version 249?
DeleteThis comment has been removed by the author.
Deleteopencv 2.4.11 visual studio 2013 and cuda 7.5 toolkit
ReplyDeleteI think there are about 3 cause.
Delete1. the parameter changed of the function in 2.4.11
2. lib, dll, header file including missing.
3. code error(user fault)
Check try gain?
Thank you.
getting an error related to no gpu support even after successful cmake
DeleteCheck your dll is 32bit or 64bit?
Deleteand I uploaded source code on github
https://github.com/MareArts/AdaBoost-Face-Detection-test-using-OpenCV
The code is run well. I have tested just now.
Thank you.
thank you so much but i would like to know you opencv settings with visual studio and gpu
DeleteDownload opencv and set path in Visual Studio.
Deleterefer to here -> http://study.marearts.com/2013/08/visual-studio-2012-opencv-246-setting.html
But you want to use GPU, then build library self.
Set build option using cmake, and build in VS then dll is made.
refer to here
http://study.marearts.com/search/label/Opencv%20Build
but simple method is to use vs plug in. gpu use also possible
who made opecv plug to use simple in vs
refer to here
http://study.marearts.com/search/label/ceemple
I have problem to compile, I copy the "haarcascade_frontalface_alt.xml" file in a specific location?
ReplyDeletexml file located in project folder or bin folder.
DeleteThank you.
how do we optimize gpu functions? In my case gpu took more time in detection of faces than cpu.
ReplyDeletesee the opencv reference here -> http://docs.opencv.org/2.4/modules/objdetect/doc/cascade_classification.html#cascadeclassifier-detectmultiscale
DeleteI think that gpu will be faster, lager image and searching face more closely..
And should gpu performance good? we need expensive graphic card!!
Thank you.