| 1 |
< |
/* Copyright (c) 1992 Regents of the University of California */ |
| 1 |
> |
/* Copyright (c) 1996 Regents of the University of California */ |
| 2 |
|
|
| 3 |
|
#ifndef lint |
| 4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
| 17 |
|
|
| 18 |
|
#include "color.h" |
| 19 |
|
|
| 20 |
+ |
#include "view.h" |
| 21 |
+ |
|
| 22 |
|
#include "resolu.h" |
| 23 |
|
|
| 24 |
|
#include "paths.h" |
| 66 |
|
|
| 67 |
|
int wrongformat = 0; |
| 68 |
|
|
| 69 |
+ |
VIEW ourview = STDVIEW; |
| 70 |
+ |
int gotview = 0; |
| 71 |
+ |
int wrapfilt = 0; /* wrap filter horizontally? */ |
| 72 |
+ |
|
| 73 |
+ |
int estatus = 0; /* exit status (for non-fatal errors) */ |
| 74 |
+ |
|
| 75 |
|
int xrad; /* x search radius */ |
| 76 |
|
int yrad; /* y search radius */ |
| 77 |
|
int xbrad; /* x box size */ |
| 155 |
|
fprintf(stderr, |
| 156 |
|
"%s: exposure out of range\n", |
| 157 |
|
argv[0]); |
| 158 |
< |
exit(1); |
| 158 |
> |
quit(1); |
| 159 |
|
} |
| 160 |
|
switch (argv[i][2]) { |
| 161 |
|
case '\0': |
| 275 |
|
} |
| 276 |
|
if (!(order & YMAJOR)) |
| 277 |
|
inpaspect = 1.0/inpaspect; |
| 278 |
+ |
/* wrap around for cylindrical view? */ |
| 279 |
+ |
wrapfilt = gotview && ourview.type == VT_CYL && |
| 280 |
+ |
ourview.horiz >= 360.-FTINY && order & YMAJOR; |
| 281 |
|
/* compute output resolution */ |
| 282 |
|
if (ncols <= 0) |
| 283 |
|
ncols = x_c*xres + .5; |
| 309 |
|
} |
| 310 |
|
pass2(fin); |
| 311 |
|
|
| 312 |
< |
quit(0); |
| 312 |
> |
quit(estatus); |
| 313 |
|
} |
| 314 |
|
|
| 315 |
|
|
| 316 |
+ |
double |
| 317 |
+ |
rgb_bright(clr) |
| 318 |
+ |
COLOR clr; |
| 319 |
+ |
{ |
| 320 |
+ |
return(bright(clr)); |
| 321 |
+ |
} |
| 322 |
+ |
|
| 323 |
+ |
|
| 324 |
+ |
double |
| 325 |
+ |
xyz_bright(clr) |
| 326 |
+ |
COLOR clr; |
| 327 |
+ |
{ |
| 328 |
+ |
return(clr[CIEY]); |
| 329 |
+ |
} |
| 330 |
+ |
|
| 331 |
+ |
|
| 332 |
+ |
double (*ourbright)() = rgb_bright; |
| 333 |
+ |
|
| 334 |
+ |
|
| 335 |
+ |
int |
| 336 |
|
headline(s) /* process line from header */ |
| 337 |
|
char *s; |
| 338 |
|
{ |
| 341 |
|
fputs(s, stdout); /* copy to output */ |
| 342 |
|
if (isaspect(s)) /* get aspect ratio */ |
| 343 |
|
inpaspect *= aspectval(s); |
| 344 |
< |
else if (isexpos(s)) |
| 344 |
> |
else if (isexpos(s)) /* get exposure */ |
| 345 |
|
hotlvl *= exposval(s); |
| 346 |
< |
else if (isformat(s)) { |
| 347 |
< |
formatval(fmt, s); |
| 348 |
< |
wrongformat = strcmp(fmt, COLRFMT); |
| 349 |
< |
} |
| 346 |
> |
else if (formatval(fmt, s)) { /* get format */ |
| 347 |
> |
wrongformat = 0; |
| 348 |
> |
if (!strcmp(COLRFMT, fmt)) |
| 349 |
> |
ourbright = rgb_bright; |
| 350 |
> |
else if (!strcmp(CIEFMT, fmt)) |
| 351 |
> |
ourbright = xyz_bright; |
| 352 |
> |
else |
| 353 |
> |
wrongformat = !globmatch(PICFMT, fmt); |
| 354 |
> |
} else if (isview(s) && sscanview(&ourview, s) > 0) |
| 355 |
> |
gotview++; |
| 356 |
> |
return(0); |
| 357 |
|
} |
| 358 |
|
|
| 359 |
|
|
| 396 |
|
progname, (int)(100L*i/yres)); |
| 397 |
|
yres = i; |
| 398 |
|
y_r = (double)nrows/yres; |
| 399 |
+ |
estatus++; |
| 400 |
|
break; |
| 401 |
|
} |
| 402 |
|
pass1scan(scan, i); |
| 416 |
|
scan2init(); |
| 417 |
|
yread = 0; |
| 418 |
|
for (r = 0; r < nrows; r++) { |
| 419 |
< |
ycent = (long)r*yres/nrows; |
| 419 |
> |
ycent = (r+.5)*yres/nrows; |
| 420 |
|
while (yread <= ycent+yrad) { |
| 421 |
|
if (yread < yres) { |
| 422 |
|
if (freadscan(scanin[yread%barsize], |
| 423 |
|
xres, in) < 0) { |
| 424 |
|
fprintf(stderr, |
| 425 |
< |
"%s: bad read (y=%d)\n", |
| 425 |
> |
"%s: truncated input (y=%d)\n", |
| 426 |
|
progname, yres-1-yread); |
| 427 |
|
quit(1); |
| 428 |
|
} |
| 433 |
|
if (obarsize > 0) |
| 434 |
|
scan2sync(r); |
| 435 |
|
for (c = 0; c < ncols; c++) { |
| 436 |
< |
xcent = (long)c*xres/ncols; |
| 436 |
> |
xcent = (c+.5)*xres/ncols; |
| 437 |
|
if (thresh > FTINY) |
| 438 |
|
dothresh(xcent, ycent, c, r); |
| 439 |
|
else if (rad > FTINY) |
| 469 |
|
rad *= (y_r + x_c)/2.0; |
| 470 |
|
|
| 471 |
|
if (thresh > FTINY) { |
| 433 |
– |
xrad = CHECKRAD*THRESHRAD*rad/x_c + xbrad; |
| 434 |
– |
yrad = CHECKRAD*THRESHRAD*rad/y_r + ybrad; |
| 472 |
|
orad = CHECKRAD*THRESHRAD*rad + 1; |
| 473 |
+ |
xrad = orad/x_c + xbrad; |
| 474 |
+ |
yrad = orad/y_r + ybrad; |
| 475 |
|
obarsize = 2*orad + 1; |
| 476 |
|
} else { |
| 477 |
|
xrad = CHECKRAD*rad/x_c + 1; |
| 514 |
|
fputaspect(d, stdout); |
| 515 |
|
} |
| 516 |
|
/* record exposure */ |
| 517 |
< |
d = bright(exposure); |
| 517 |
> |
d = (*ourbright)(exposure); |
| 518 |
|
if (!FEQ(d,1.0)) |
| 519 |
|
fputexpos(d, stdout); |
| 520 |
|
/* record color correction */ |
| 541 |
|
int ybot; |
| 542 |
|
register int c; |
| 543 |
|
/* average input scanlines */ |
| 544 |
< |
while (nextrow < r+orad && nextrow < nrows) { |
| 545 |
< |
ybot = (long)nextrow*yres/nrows; |
| 544 |
> |
while (nextrow <= r+orad && nextrow < nrows) { |
| 545 |
> |
ybot = (nextrow+.5)*yres/nrows; |
| 546 |
|
for (c = 0; c < ncols; c++) { |
| 547 |
< |
dobox(ctmp, (int)((long)c*xres/ncols),ybot, c,nextrow); |
| 548 |
< |
greybar[nextrow%obarsize][c] = bright(ctmp); |
| 547 |
> |
dobox(ctmp, (int)((c+.5)*xres/ncols),ybot, c,nextrow); |
| 548 |
> |
greybar[nextrow%obarsize][c] = (*ourbright)(ctmp); |
| 549 |
|
} |
| 550 |
|
/* and zero output scanline */ |
| 551 |
|
bzero((char *)scoutbar[nextrow%obarsize], ncols*sizeof(COLOR)); |
| 568 |
|
break; |
| 569 |
|
if (fflush(stdout) < 0) { |
| 570 |
|
fprintf(stderr, "%s: write error at end of pass2\n", progname); |
| 571 |
< |
exit(1); |
| 571 |
> |
quit(1); |
| 572 |
|
} |
| 573 |
|
} |
| 574 |
|
|