I am currently working on a face detection program using haar classifiers(I am using the sample program that comes with opencv installation).What i need to do is to extract this code out of opencv and make the code work without opencv libraries i.e. without opencv installed on both windows and linux desktops.I have been trying to do this for a while but with no success.Any suggestions on how to do this? Thanks in advance
feedback
|
closed as not a real question by Paul R, Mat, Steve-o, karlphillip, Graviton Sep 13 '11 at 1:58
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
OpenCV is a very sophisticated imaging library. The sample program will use the library(!), you cannot simply run the code without the library. | |||
|
feedback
|
|
You won't get any performance benefits running "copy-pasted" OpenCV code on BeagleBoard's DSP.
What you can try is to port functions like cvIntegral() - they might be accelerated on DSP. Check this: http://elinux.org/BeagleBoard/GSoC/2010_Projects/OpenCV http://code.google.com/p/opencv-dsp-acceleration/ http://www.computer-vision-software.com/blog/2009/04/fixing-opencv/ http://pramodpoudel.blogspot.com/ And this - running Viola-Jones on ARM7 http://cmucam.org/wiki/viola-jones (especially CC3 Face Detector document) | ||||
|
feedback
|