git.ucc.asn.au
/
matches
/
MCTX3420.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55c5e1a
)
image fix for bbb
author
Jeremy Tan
<
[email protected]
>
Wed, 9 Oct 2013 05:05:08 +0000
(13:05 +0800)
committer
Jeremy Tan
<
[email protected]
>
Wed, 9 Oct 2013 05:05:08 +0000
(13:05 +0800)
server/image.c
patch
|
blob
|
history
diff --git
a/server/image.c
b/server/image.c
index
dafe375
..
c7b6263
100644
(file)
--- 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};
UCC
git Repository :: git.ucc.asn.au