summaryrefslogtreecommitdiffstats
path: root/test/grab.c
blob: e2973dc304937f2a640fa12e3afc6ed2f82cc731 (plain)
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

#include <stdio.h>
#include <stdlib.h>
#include "uca.h"
#include "uca-cam.h"

int main(int argc, char *argv[])
{
    struct uca_t *uca = uca_init();
    if (uca == NULL) {
        printf("Couldn't find a camera\n");
        return 1;
    }

    /* take first camera */
    struct uca_camera_t *cam = uca->cameras;

    uint32_t val = 5000;
    cam->set_property(cam, UCA_PROP_EXPOSURE, &val);
    val = 0;
    cam->set_property(cam, UCA_PROP_DELAY, &val);

    uint32_t width, height;
    cam->get_property(cam, UCA_PROP_WIDTH, &width);
    cam->get_property(cam, UCA_PROP_HEIGHT, &height);

    uca_cam_alloc(cam, 20);

    uint16_t *buffer = (uint16_t *) malloc(width * height * 2);

    cam->start_recording(cam);
    cam->grab(cam, (char *) buffer);
    cam->stop_recording(cam);
    uca_destroy(uca);

    FILE *fp = fopen("out.raw", "wb");
    fwrite(buffer, width*height, 2, fp);
    fclose(fp);

    free(buffer);
    return 0;
}