summaryrefslogtreecommitdiffstats
path: root/test/benchmark.c
blob: 60d030debb9f9c338ff1a11b9e97094875fc6fff (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Copyright (C) 2011, 2012 Matthias Vogelgesang <matthias.vogelgesang@kit.edu>
   (Karlsruhe Institute of Technology)

   This library is free software; you can redistribute it and/or modify it
   under the terms of the GNU Lesser General Public License as published by the
   Free Software Foundation; either version 2.1 of the License, or (at your
   option) any later version.

   This library is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
   details.

   You should have received a copy of the GNU Lesser General Public License along
   with this library; if not, write to the Free Software Foundation, Inc., 51
   Franklin St, Fifth Floor, Boston, MA 02110, USA */

#define __USE_BSD
#include <unistd.h>
#undef __USE_BSD
#include <sys/time.h>
#include <stdio.h>
#include <stdlib.h>

#include "uca.h"

static __suseconds_t time_diff(struct timeval *start, struct timeval *stop)
{
    return (stop->tv_sec - start->tv_sec)*1000000 + (stop->tv_usec - start->tv_usec);
}

void grab_callback_raw(uint32_t image_number, void *buffer, void *meta_data, void *user)
{
    uint32_t *count = (uint32_t *) user;
    *count = image_number;
}

void benchmark_cam(struct uca_camera *cam)
{
    char name[256];
    uca_cam_get_property(cam, UCA_PROP_NAME, name, 256);
    
    uint32_t val = 5000;
    uca_cam_set_property(cam, UCA_PROP_EXPOSURE, &val);
    val = 0;
    uca_cam_set_property(cam, UCA_PROP_DELAY, &val);

    uint32_t width, height, bits;
    uca_cam_get_property(cam, UCA_PROP_WIDTH, &width, 0);
    uca_cam_get_property(cam, UCA_PROP_HEIGHT, &height, 0);
    uca_cam_get_property(cam, UCA_PROP_BITDEPTH, &bits, 0);
    int pixel_size = bits == 8 ? 1 : 2;

    struct timeval start, stop;

    for (int i = 0; i < 2; i++) {
        char *buffer = (char *) malloc(width*height*pixel_size);
        uca_cam_set_property(cam, UCA_PROP_HEIGHT, &height);
        uca_cam_alloc(cam, 20);

        /*
         * Experiment 1: Grab n frames manually
         */
        gettimeofday(&start, NULL);
        uca_cam_start_recording(cam);
        for (int i = 0; i < 1000; i++)
            uca_cam_grab(cam, (char *) buffer, NULL);
            
        uca_cam_stop_recording(cam);
        gettimeofday(&stop, NULL);

        float seconds = time_diff(&start, &stop) / 1000000.0;
        printf("%f,%s;%i;%i;1;%.2f;%.2f\n", seconds,
                name, width, height, 1000.0 / seconds, 
                width*height*pixel_size*1000.0/ (1024*1024*seconds));

        height /= 2;
        free(buffer);
    }
}

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

    printf("# camera;width;height;experiment;frames-per-second;throughput in MB/s\n");

    /* take first camera */
    struct uca_camera *cam = u->cameras;
    while (cam != NULL) {
        benchmark_cam(cam);
        cam = cam->next;
    }

    uca_destroy(u);
    return 0;
}