From bc13dd9b0f2632a6e0a789e2d4aeb873669c4f74 Mon Sep 17 00:00:00 2001 From: Jeremy Tan Date: Wed, 9 Oct 2013 13:05:08 +0800 Subject: [PATCH] image fix for bbb --- server/image.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server/image.c b/server/image.c index dafe375..c7b62635 100644 --- a/server/image.c +++ b/server/image.c @@ -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}; -- 2.20.1