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.
29 lines
501 B
29 lines
501 B
3 years ago
|
/*
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <pam.h>
|
||
|
|
||
|
#include "../floatimg.h"
|
||
|
|
||
|
int fimg_pnm_infos(char *);
|
||
|
|
||
|
/* --------------------------------------------------------------------- */
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
int foo;
|
||
|
char *infile = "foo.pnm";
|
||
|
|
||
|
pnm_init(&argc, argv);
|
||
|
|
||
|
if (2 == argc) infile = argv[1];
|
||
|
|
||
|
foo = fimg_pnm_infos(infile);
|
||
|
fprintf(stderr, "got %d\n", foo);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
/* --------------------------------------------------------------------- */
|