1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "uca.h"
#include "uca-cam.h"
void grab_callback(uint32_t image_number, void *buffer)
{
printf("got picture number %i\n", image_number);
}
int main(int argc, char *argv[])
{
struct uca *u = uca_init(NULL);
if (u == NULL) {
printf("Couldn't find a camera\n");
return 1;
}
/* take first camera */
struct uca_camera *cam = u->cameras;
uint32_t val = 1;
cam->set_property(cam, UCA_PROP_EXPOSURE, &val);
val = 0;
cam->set_property(cam, UCA_PROP_DELAY, &val);
val = 10;
cam->set_property(cam, UCA_PROP_FRAMERATE, &val);
uint32_t width, height, bits;
cam->get_property(cam, UCA_PROP_WIDTH, &width, 0);
cam->get_property(cam, UCA_PROP_HEIGHT, &height, 0);
cam->get_property(cam, UCA_PROP_BITDEPTH, &bits, 0);
uca_cam_alloc(cam, 10);
cam->register_callback(cam, &grab_callback);
cam->start_recording(cam);
printf("waiting for 10 seconds\n");
sleep(10);
cam->stop_recording(cam);
uca_destroy(u);
return 0;
}
|