expanding README: copyright
[sparrow.git] / test-edge.c
blob9ddad7844772ee8f224263a722365e8e753c5d29
1 #include "sparrow.h"
2 #include <string.h>
3 #include <math.h>
4 #include <sys/time.h>
6 #include <stdio.h>
8 #include "cv.h"
9 #include "highgui.h"
11 #define debug(format, ...) fprintf (stderr, (format),## __VA_ARGS__); fflush(stderr)
12 #define debug_lineno() debug("%-25s line %4d \n", __func__, __LINE__ )
14 #include "edge.c"
18 int main(int argc, char **argv)
21 GstSparrow sparrow = {0};
22 read_edges_info(&sparrow, argv[1]);
24 sparrow_format in;
25 sparrow_format out;
29 return 0;