219
edits
(Remove whitespace) |
m (fix whitespaces) |
||
Line 72: | Line 72: | ||
octave:> set(obj, "VideoResolution") | octave:> set(obj, "VideoResolution") | ||
ans = | ans = | ||
640 480 | 640 480 | ||
160 120 | 160 120 | ||
Line 105: | Line 106: | ||
octave:> set(obj, "brightness") | octave:> set(obj, "brightness") | ||
ans = | ans = | ||
scalar structure containing the fields: | scalar structure containing the fields: | ||
min = 0 | min = 0 | ||
max = 255 | max = 255 | ||
Line 133: | Line 134: | ||
octave:> image(img) | octave:> image(img) | ||
octave:> imwrite(img, "ex1_a.png") | octave:> imwrite(img, "ex1_a.png") | ||
octave:> [img, seq, t] = getsnapshot(obj); | octave:> [img, seq, t] = getsnapshot(obj); | ||
octave:> seq | octave:> seq | ||
Line 139: | Line 140: | ||
octave:> t | octave:> t | ||
t = | t = | ||
scalar structure containing the fields: | scalar structure containing the fields: | ||
tv_sec = 10281 | tv_sec = 10281 | ||
tv_usec = 779303 | tv_usec = 779303 | ||
Line 200: | Line 201: | ||
$ cd octave-image-acquisition/devel | $ cd octave-image-acquisition/devel | ||
$ make check | $ make check | ||
octave -q run_tests.m | octave -q run_tests.m | ||
../src/__v4l2_handler__.cc........................ PASS 3/3 | ../src/__v4l2_handler__.cc........................ PASS 3/3 | ||
Line 208: | Line 209: | ||
@videoinput/getsnapshot........................... PASS 4/4 | @videoinput/getsnapshot........................... PASS 4/4 | ||
imaqhwinfo........................................ PASS 1/1 | imaqhwinfo........................................ PASS 1/1 | ||
Summary: | Summary: | ||
PASS 20 | PASS 20 | ||
FAIL 0 | FAIL 0 | ||
If there are tests which FAIL, then please have a look at the generated fntest.log and add it to your bug report. | If there are tests which FAIL, then please have a look at the generated fntest.log and add it to your bug report. |
edits