Merge branch 'master' of https://github.com/szmoore/MCTX3420.git
[matches/MCTX3420.git] / 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