| 7 |
|
/* |
| 8 |
|
* Calibrate a scanned MacBeth Color Checker Chart |
| 9 |
|
* |
| 10 |
< |
* Produce a .cal file suitable for use with pcomb. |
| 10 |
> |
* Produce a .cal file suitable for use with pcomb, |
| 11 |
> |
* or .cwp file suitable for use with pcwarp. |
| 12 |
> |
* |
| 13 |
> |
* Warping code depends on conformance of COLOR and W3VEC types. |
| 14 |
|
*/ |
| 15 |
|
|
| 16 |
|
#include <stdio.h> |
| 17 |
+ |
#include <math.h> |
| 18 |
|
#ifdef MSDOS |
| 19 |
|
#include <fcntl.h> |
| 20 |
|
#endif |
| 21 |
|
#include "color.h" |
| 22 |
|
#include "resolu.h" |
| 23 |
|
#include "pmap.h" |
| 24 |
+ |
#include "warp3d.h" |
| 25 |
|
|
| 26 |
|
/* MacBeth colors */ |
| 27 |
|
#define DarkSkin 0 |
| 101 |
|
#define RG_CORR 04 /* corrected color region */ |
| 102 |
|
|
| 103 |
|
int scanning = 1; /* scanned input (or recorded output)? */ |
| 104 |
+ |
double irrad = 1.0; /* irradiance multiplication factor */ |
| 105 |
+ |
int rawmap = 0; /* put out raw color mapping? */ |
| 106 |
|
|
| 107 |
|
int xmax, ymax; /* input image dimensions */ |
| 108 |
|
int bounds[4][2]; /* image coordinates of chart corners */ |
| 116 |
|
COLORMAT solmat; /* color mapping matrix */ |
| 117 |
|
COLOR colmin, colmax; /* gamut limits */ |
| 118 |
|
|
| 119 |
+ |
WARP3D *wcor = NULL; /* color space warp */ |
| 120 |
+ |
|
| 121 |
|
FILE *debugfp = NULL; /* debug output picture */ |
| 122 |
|
char *progname; |
| 123 |
|
|
| 160 |
|
bounds[3][1] = atoi(argv[++i]); |
| 161 |
|
scanning = 2; |
| 162 |
|
break; |
| 163 |
+ |
case 'i': /* irradiance factor */ |
| 164 |
+ |
i++; |
| 165 |
+ |
if (badarg(argc-i, argv+i, "f")) |
| 166 |
+ |
goto userr; |
| 167 |
+ |
irrad = atof(argv[i]); |
| 168 |
+ |
break; |
| 169 |
+ |
case 'm': /* raw map output */ |
| 170 |
+ |
rawmap = 1; |
| 171 |
+ |
break; |
| 172 |
|
case 'c': /* color input */ |
| 173 |
|
scanning = 0; |
| 174 |
|
break; |
| 209 |
|
else |
| 210 |
|
getcolors(); |
| 211 |
|
compute(); /* compute color mapping */ |
| 212 |
< |
/* print comment */ |
| 213 |
< |
printf("{\n\tColor correction file computed by:\n\t\t"); |
| 214 |
< |
printargs(argc, argv, stdout); |
| 215 |
< |
printf("\n\tUsage: pcomb -f %s uncorrected.pic > corrected.pic\n", |
| 216 |
< |
i+1 < argc ? argv[i+1] : "{this_file}"); |
| 217 |
< |
if (!scanning) |
| 200 |
< |
printf("\t Or: pcond [options] -f %s orig.pic > output.pic\n", |
| 212 |
> |
if (rawmap) { /* print out raw correspondence */ |
| 213 |
> |
register int j; |
| 214 |
> |
|
| 215 |
> |
printf("# Color correspondence produced by:\n#\t\t"); |
| 216 |
> |
printargs(argc, argv, stdout); |
| 217 |
> |
printf("#\tUsage: pcwarp -m %s uncorrected.pic > corrected.pic\n", |
| 218 |
|
i+1 < argc ? argv[i+1] : "{this_file}"); |
| 219 |
< |
printf("}\n"); |
| 220 |
< |
putmapping(); /* put out color mapping */ |
| 219 |
> |
printf("#\t Or: pcond [options] -m %s orig.pic > output.pic\n", |
| 220 |
> |
i+1 < argc ? argv[i+1] : "{this_file}"); |
| 221 |
> |
for (j = 0; j < 24; j++) |
| 222 |
> |
printf("%f %f %f %f %f %f\n", |
| 223 |
> |
colval(inpRGB[j],RED), colval(inpRGB[j],GRN), |
| 224 |
> |
colval(inpRGB[j],BLU), colval(mbRGB[j],RED), |
| 225 |
> |
colval(mbRGB[j],GRN), colval(mbRGB[j],BLU)); |
| 226 |
> |
if (scanning && debugfp != NULL) |
| 227 |
> |
cwarp(); /* color warp for debugging */ |
| 228 |
> |
} else { /* print color mapping */ |
| 229 |
> |
/* print header */ |
| 230 |
> |
printf("{\n\tColor correction file computed by:\n\t\t"); |
| 231 |
> |
printargs(argc, argv, stdout); |
| 232 |
> |
printf("\n\tUsage: pcomb -f %s uncorrected.pic > corrected.pic\n", |
| 233 |
> |
i+1 < argc ? argv[i+1] : "{this_file}"); |
| 234 |
> |
if (!scanning) |
| 235 |
> |
printf("\t Or: pcond [options] -f %s orig.pic > output.pic\n", |
| 236 |
> |
i+1 < argc ? argv[i+1] : "{this_file}"); |
| 237 |
> |
printf("}\n"); |
| 238 |
> |
putmapping(); /* put out color mapping */ |
| 239 |
> |
} |
| 240 |
|
if (debugfp != NULL) /* put out debug picture */ |
| 241 |
|
if (scanning) |
| 242 |
|
picdebug(); |
| 245 |
|
exit(0); |
| 246 |
|
userr: |
| 247 |
|
fprintf(stderr, |
| 248 |
< |
"Usage: %s [-d dbg.pic][-p xul yul xur yur xll yll xlr ylr] input.pic [output.cal]\n", |
| 248 |
> |
"Usage: %s [-d dbg.pic][-p xul yul xur yur xll yll xlr ylr][-i irrad][-m] input.pic [output.{cal|cwp}]\n", |
| 249 |
|
progname); |
| 250 |
< |
fprintf(stderr, " or: %s [-d dbg.pic] -c [xyY.dat [output.cal]]\n", |
| 250 |
> |
fprintf(stderr, " or: %s [-d dbg.pic][-i irrad][-m] -c [xyY.dat [output.{cal|cwp}]]\n", |
| 251 |
|
progname); |
| 252 |
|
exit(1); |
| 253 |
|
} |
| 272 |
|
exit(1); |
| 273 |
|
} |
| 274 |
|
/* map MacBeth colors to RGB space */ |
| 275 |
< |
for (i = 0; i < 24; i++) |
| 275 |
> |
for (i = 0; i < 24; i++) { |
| 276 |
|
xyY2RGB(mbRGB[i], mbxyY[i]); |
| 277 |
+ |
scalecolor(mbRGB[i], irrad); |
| 278 |
+ |
} |
| 279 |
|
} |
| 280 |
|
|
| 281 |
|
|
| 440 |
|
if (scanning) { |
| 441 |
|
copycolor(colmin, cblack); |
| 442 |
|
copycolor(colmax, cwhite); |
| 443 |
+ |
scalecolor(colmax, irrad); |
| 444 |
|
} else |
| 445 |
|
for (i = 0; i < 3; i++) { |
| 446 |
|
colval(colmin,i) = colval(bramp[0][0],i) - |
| 465 |
|
n++; |
| 466 |
|
} |
| 467 |
|
compsoln(clrin, clrout, n); |
| 468 |
< |
/* check out-of-gamut colors */ |
| 469 |
< |
for (i = 0; i < 24; i++) |
| 470 |
< |
if (cflags & 1L<<i && cvtcolor(ctmp, mbRGB[i])) |
| 471 |
< |
gmtflags |= 1L<<i; |
| 468 |
> |
if (irrad > 0.99 && irrad < 1.01) /* check gamut */ |
| 469 |
> |
for (i = 0; i < 24; i++) |
| 470 |
> |
if (cflags & 1L<<i && cvtcolor(ctmp, mbRGB[i])) |
| 471 |
> |
gmtflags |= 1L<<i; |
| 472 |
|
} while (cflags & gmtflags); |
| 473 |
|
if (gmtflags & MODFLGS) |
| 474 |
|
fprintf(stderr, |
| 477 |
|
} |
| 478 |
|
|
| 479 |
|
|
| 480 |
< |
putmapping() /* put out color mapping for pcomb -f */ |
| 480 |
> |
putmapping() /* put out color mapping */ |
| 481 |
|
{ |
| 482 |
|
static char cchar[3] = {'r', 'g', 'b'}; |
| 483 |
|
register int i, j; |
| 585 |
|
} |
| 586 |
|
|
| 587 |
|
|
| 588 |
+ |
cwarp() /* compute color warp map */ |
| 589 |
+ |
{ |
| 590 |
+ |
register int i; |
| 591 |
+ |
|
| 592 |
+ |
if ((wcor = new3dw(W3EXACT)) == NULL) |
| 593 |
+ |
goto memerr; |
| 594 |
+ |
for (i = 0; i < 24; i++) |
| 595 |
+ |
if (!add3dpt(wcor, inpRGB[i], mbRGB[i])) |
| 596 |
+ |
goto memerr; |
| 597 |
+ |
return; |
| 598 |
+ |
memerr: |
| 599 |
+ |
perror(progname); |
| 600 |
+ |
exit(1); |
| 601 |
+ |
} |
| 602 |
+ |
|
| 603 |
+ |
|
| 604 |
|
int |
| 605 |
|
cvtcolor(cout, cin) /* convert color according to our mapping */ |
| 606 |
|
COLOR cout, cin; |
| 608 |
|
COLOR ctmp; |
| 609 |
|
int clipped; |
| 610 |
|
|
| 611 |
< |
if (scanning) { |
| 611 |
> |
if (wcor != NULL) { |
| 612 |
> |
clipped = warp3d(cout, cin, wcor); |
| 613 |
> |
clipped |= clipgamut(cout,bright(cout),CGAMUT,colmin,colmax); |
| 614 |
> |
} else if (scanning) { |
| 615 |
|
bresp(ctmp, cin); |
| 616 |
|
clipped = cresp(cout, ctmp); |
| 617 |
|
} else { |
| 683 |
|
if (!(1L<<i & gmtflags) || (x+y)&07) { |
| 684 |
|
copycolor(scan[x], mbRGB[i]); |
| 685 |
|
clipgamut(scan[x], bright(scan[x]), |
| 686 |
< |
CGAMUT, cblack, cwhite); |
| 686 |
> |
CGAMUT, colmin, colmax); |
| 687 |
|
} else |
| 688 |
|
copycolor(scan[x], blkcol); |
| 689 |
|
} else if (rg == RG_CORR) |
| 722 |
|
clipgamut(ctmp, bright(ctmp), CGAMUT, cblack, cwhite); |
| 723 |
|
setcolr(orclr[i], colval(ctmp,RED), |
| 724 |
|
colval(ctmp,GRN), colval(ctmp,BLU)); |
| 725 |
< |
bresp(ctmp, inpRGB[i]); |
| 726 |
< |
colortrans(ct2, solmat, ctmp); |
| 727 |
< |
clipgamut(ct2, bright(ct2), CGAMUT, cblack, cwhite); |
| 728 |
< |
setcolr(cvclr[i], colval(ct2,RED), |
| 729 |
< |
colval(ct2,GRN), colval(ct2,BLU)); |
| 725 |
> |
if (rawmap) |
| 726 |
> |
copycolr(cvclr[i], mbclr[i]); |
| 727 |
> |
else { |
| 728 |
> |
bresp(ctmp, inpRGB[i]); |
| 729 |
> |
colortrans(ct2, solmat, ctmp); |
| 730 |
> |
clipgamut(ct2, bright(ct2), CGAMUT, |
| 731 |
> |
cblack, cwhite); |
| 732 |
> |
setcolr(cvclr[i], colval(ct2,RED), |
| 733 |
> |
colval(ct2,GRN), |
| 734 |
> |
colval(ct2,BLU)); |
| 735 |
> |
} |
| 736 |
|
} |
| 737 |
|
} |
| 738 |
|
/* allocate scanline */ |