I’m trying to get a a frame from the ps3eye. Normally in OpenCV2.0, I’d go
CvCapture *capture = 0;
capture = cvCaptureFromCAM( 0 ); //stream
frame= cvQueryFrame( capture ); //image
in CLEyeFaceTracker.cpp, the capture() part is at the top in public: instead of the main.
inside of which is
cvConvertImage(pCapImage, image);
is there anyway to get to a single frame inside of main()?
something like cam->givemeaframe
why is the capture stuff written inside the same code as the example instead of in a different file?
so confused.