Ask Your Question

KTC's profile - activity

2012-09-26 00:11:45 -0600 received badge  Student (source)
2012-09-25 23:08:09 -0600 asked a question Speed up face detection

I am trying to speed up face detection in OpenCV. I have only one face I need to detect (I know this face from before). Does having this information speeds up the face detection? How can I use this?

I have considered some ideas such as using a smaller XML file since I am only detecting one face.

Thx

2012-09-04 07:57:02 -0600 asked a question cvSobel with 16 bit images

I have a 10 bit grayscale image that I like to use the cvSobel function. The documentation is not clear if it can accept 16 bit grayscale images. When I try to make this work, I get an exception from OpenCV.

In my VC++ when I look at the function, this is what I am seeing.

     CVAPI(void) cvSobel( const CvArr* src, CvArr* dst,
                int xorder, int yorder,
                int aperture_size CV_DEFAULT(3));

I tried to make destination 32F but still crash.