summaryrefslogtreecommitdiffstats
path: root/test/grab-async.c
blob: 058ec3f563a3ad4d0bd64ca49c266948d8cb200c (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

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

struct image_props {
    uint32_t width;
    uint32_t height;
    uint32_t bits;
};

void grab_callback(uint64_t image_number, void *buffer, void *meta_data, void *user)
{
    struct image_props *props = (struct image_props *) user;
    const int pixel_size = props->bits == 8 ? 1 : 2;
    char filename[256];

    sprintf(filename, "out-%04lu.raw", image_number);
    FILE *fp = fopen(filename, "wb");
    fwrite(buffer, props->width * props->height, pixel_size, fp);
    fclose(fp);

    printf("grabbed picture %lu at %p (%ix%i @ %i bits)\n", image_number, buffer, props->width, props->height, props->bits);
}

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 = 5000;
    cam->set_property(cam, UCA_PROP_EXPOSURE, &val);
    val = 0;
    cam->set_property(cam, UCA_PROP_DELAY, &val);

    struct image_props props;
    cam->get_property(cam, UCA_PROP_WIDTH, &props.width, 0);
    cam->get_property(cam, UCA_PROP_HEIGHT, &props.height, 0);
    cam->get_property(cam, UCA_PROP_BITDEPTH, &props.bits, 0);

    uca_cam_alloc(cam, 10);

    cam->register_callback(cam, &grab_callback, &props);
    cam->start_recording(cam);
    printf("grabbing for 2 seconds\n");
    sleep(2);
    cam->stop_recording(cam);
    printf("done\n");
    fflush(stdout);

    uca_destroy(u);
    return 0;
}