| 1 |
– |
/* Copyright (c) 1992 Regents of the University of California */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* Find extrema points in a Radiance picture. |
| 6 |
|
*/ |
| 7 |
|
|
| 8 |
|
#include <stdio.h> |
| 9 |
+ |
#include <math.h> |
| 10 |
+ |
#include <string.h> |
| 11 |
+ |
|
| 12 |
+ |
#include "platform.h" |
| 13 |
|
#include "color.h" |
| 14 |
|
|
| 15 |
|
|
| 29 |
|
|
| 30 |
|
if (isformat(s)) { /* format */ |
| 31 |
|
formatval(fmt, s); |
| 32 |
< |
wrongformat = strcmp(fmt, COLRFMT); |
| 32 |
> |
wrongformat = !globmatch(PICFMT, fmt); |
| 33 |
|
} |
| 34 |
|
if (!orig) |
| 35 |
< |
return; |
| 35 |
> |
return(0); |
| 36 |
|
if (isexpos(s)) { /* exposure */ |
| 37 |
|
d = exposval(s); |
| 38 |
|
scalecolor(expos, d); |
| 40 |
|
colcorval(ctmp, s); |
| 41 |
|
multcolor(expos, ctmp); |
| 42 |
|
} |
| 43 |
+ |
return(0); |
| 44 |
|
} |
| 45 |
|
|
| 46 |
|
|
| 55 |
|
COLR *scan; |
| 56 |
|
COLR cmin, cmax; |
| 57 |
|
int xmin, ymin, xmax, ymax; |
| 58 |
< |
|
| 58 |
> |
SET_DEFAULT_BINARY(); |
| 59 |
> |
SET_FILE_BINARY(stdin); |
| 60 |
|
for (i = 1; i < argc; i++) /* get options */ |
| 61 |
|
if (!strcmp(argv[i], "-o")) |
| 62 |
|
orig++; |
| 103 |
|
} |
| 104 |
|
} |
| 105 |
|
} |
| 106 |
< |
free((char *)scan); |
| 106 |
> |
free((void *)scan); |
| 107 |
|
printf("%d %d\t%e %e %e\n", xmin, ymin, |
| 108 |
|
colrval(cmin,RED)/colval(expos,RED), |
| 109 |
|
colrval(cmin,GRN)/colval(expos,GRN), |