image fix for bbb
authorJeremy Tan <[email protected]>
Wed, 9 Oct 2013 05:05:08 +0000 (13:05 +0800)
committerJeremy Tan <[email protected]>
Wed, 9 Oct 2013 05:05:08 +0000 (13:05 +0800)
server/image.c

index dafe375..c7b6263 100644 (file)
@@ -9,8 +9,9 @@ void Image_Handler(FCGIContext * context, char * params)
        static CvCapture * capture = NULL;
        if (capture == NULL) {
                capture = cvCreateCameraCapture(0);
-               cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH, 640);
-               cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT, 480);
+               //limit resolution to work on bbb
+               cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH, 352);
+               cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT, 288);
        }
        static int p[] = {CV_IMWRITE_JPEG_QUALITY, 100, 0};
 

UCC git Repository :: git.ucc.asn.au