Bibliothèque de traitements d'images en virgule flottante.
http://la.buvette.org/photos/cumul/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
932 B
48 lines
932 B
/* |
|
* tests pour capturer les webcams |
|
*/ |
|
|
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <unistd.h> |
|
#include <math.h> |
|
#include <string.h> |
|
|
|
#include "floatimg.h" |
|
|
|
int verbosity; |
|
|
|
/* --------------------------------------------------------------------- */ |
|
void help(int k) |
|
{ |
|
puts("Options :"); |
|
puts("\t-d\tselect the video device"); |
|
puts("\t-K\tset the K parameter"); |
|
puts("\t-l\tlist video devices"); |
|
puts("\t-v\tincrease verbosity"); |
|
exit(0); |
|
} |
|
/* --------------------------------------------------------------------- */ |
|
|
|
int main(int argc, char *argv[]) |
|
{ |
|
int foo, opt; |
|
int W = 800, H = 600; |
|
double tb; |
|
int K = 0; |
|
|
|
while ((opt = getopt(argc, argv, "hK:v")) != -1) { |
|
switch(opt) { |
|
case 'h': help(0); break; |
|
case 'K': K = atol(optarg); break; |
|
case 'v': verbosity++; break; |
|
} |
|
} |
|
|
|
if (verbosity) fimg_print_version(0); |
|
|
|
return 0; |
|
} |
|
/* --------------------------------------------------------------------- */ |
|
|
|
|
|
|