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)
-
* Introduction - The solution shows panorama image from multi images. The panorama images is processing by real-time stitching algorithm...
-
This is example code for drawing fan shape grid using vtkStructuredGrid in vtk. I've looked at a lot of examples that draw like thi...
-
Image size of origin is 320*240. Processing time is 30.96 second took. The result of stitching The resul...
-
As you can see in the following video, I created a class that stitching n cameras in real time. https://www.youtube.com/user/feelmare/sear...
-
In past, I wrote an articel about YUV 444, 422, 411 introduction and yuv <-> rgb converting example code. refer to this page -> ht...
-
This is example source cod of ORB_GPU feature detection and matching. ORB feature is known extraction speed is faster than surf and sift. ...
-
The latent SVM tells the learning method used in this paper -> "Discriminatively trained deformable part models". The authors s...
-
refer to code: . import cv2 #pip install pyzbar from pyzbar.pyzbar import decode def scan_qr_code (): # Start the webcam cap =...
-
This article is about how to convert base64 string image to byte and invoke to PIL image. Then we can handle image whatever we want to ex) ...
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.