27 |
|
#include <X11/Xutil.h> |
28 |
|
#include <X11/Xatom.h> |
29 |
|
|
30 |
< |
#include "color.h" |
30 |
> |
#undef NOPROTO |
31 |
> |
#define NOPROTO 1 |
32 |
> |
#include "tonemap.h" |
33 |
|
#include "view.h" |
34 |
|
#include "x11raster.h" |
35 |
|
#include "random.h" |
36 |
|
#include "resolu.h" |
37 |
|
|
36 |
– |
#ifdef __alpha |
37 |
– |
#define int4 int |
38 |
– |
#endif |
38 |
|
#ifndef int4 |
39 |
< |
#define int4 long |
39 |
> |
#define int4 int /* most int's are 32-bit */ |
40 |
|
#endif |
41 |
|
|
42 |
|
#define FONTNAME "8x13" /* text font we'll use */ |
78 |
|
char *tout = "od"; /* output of 't' command */ |
79 |
|
int tinterv = 0; /* interval between mouse reports */ |
80 |
|
|
81 |
+ |
int tmflags = -1; /* tone mapping flags (-1 for none) */ |
82 |
+ |
|
83 |
|
VIEW ourview = STDVIEW; /* image view parameters */ |
84 |
|
int gotview = 0; /* got parameters from file */ |
85 |
|
|
86 |
|
COLR *scanline; /* scan line buffer */ |
87 |
+ |
TMbright *lscan; /* encoded luminance scanline */ |
88 |
+ |
BYTE *cscan; /* encoded chroma scanline */ |
89 |
+ |
BYTE *pscan; /* compute pixel scanline */ |
90 |
|
|
91 |
|
RESOLU inpres; /* input resolution and ordering */ |
92 |
|
int xmax, ymax; /* picture dimensions */ |
177 |
|
tinterv = atoi(argv[++i]); |
178 |
|
break; |
179 |
|
case 'e': /* exposure comp. */ |
180 |
< |
if (argv[i+1][0] != '+' && argv[i+1][0] != '-') |
180 |
> |
i++; |
181 |
> |
if (argv[i][0] == 'a') { |
182 |
> |
tmflags = TM_F_CAMERA; |
183 |
> |
break; |
184 |
> |
} |
185 |
> |
if (argv[i][0] == 'h') { |
186 |
> |
tmflags = TM_F_HUMAN; |
187 |
> |
break; |
188 |
> |
} |
189 |
> |
if (argv[i][0] != '+' && argv[i][0] != '-') |
190 |
|
goto userr; |
191 |
< |
scale = atoi(argv[++i]); |
191 |
> |
scale = atoi(argv[i]); |
192 |
|
break; |
193 |
|
case 'g': /* gamma comp. */ |
194 |
|
if (argv[i][2] == 'e') |
245 |
|
getevent(); /* main loop */ |
246 |
|
userr: |
247 |
|
fprintf(stderr, |
248 |
< |
"Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e +/-stops][-g gamcor][-s][-ospec][-t intvl] pic ..\n", |
248 |
> |
"Usage: %s [-di disp][[-ge] spec][-b][-m][-d][-f][-c nclrs][-e spec][-g gamcor][-s][-ospec][-t intvl] pic ..\n", |
249 |
|
progname); |
250 |
|
exit(1); |
251 |
|
} |
258 |
|
|
259 |
|
if (isexpos(s)) |
260 |
|
exposure *= exposval(s); |
261 |
< |
else if (isformat(s)) { |
249 |
< |
formatval(fmt, s); |
261 |
> |
else if (formatval(fmt, s)) |
262 |
|
wrongformat = strcmp(fmt, COLRFMT); |
263 |
< |
} else if (isview(s) && sscanview(&ourview, s) > 0) |
263 |
> |
else if (isview(s) && sscanview(&ourview, s) > 0) |
264 |
|
gotview++; |
265 |
|
} |
266 |
|
|
556 |
|
xmax, ymax, 8); |
557 |
|
if (ourras == NULL) |
558 |
|
goto fail; |
559 |
< |
if (greyscale | ourvis.class == StaticGray) |
559 |
> |
if (greyscale) |
560 |
|
getgrey(); |
561 |
|
else |
562 |
|
getmapped(); |
733 |
|
return(0); |
734 |
|
case 't': /* trace */ |
735 |
|
return(traceray(ekey->x, ekey->y)); |
736 |
+ |
case 'a': /* auto exposure */ |
737 |
+ |
if (tmflags == TM_F_CAMERA) |
738 |
+ |
return(0); |
739 |
+ |
tmflags = TM_F_CAMERA; |
740 |
+ |
strcpy(buf, "auto exposure..."); |
741 |
+ |
goto remap; |
742 |
+ |
case 'h': /* human response */ |
743 |
+ |
if (tmflags == TM_F_HUMAN) |
744 |
+ |
return(0); |
745 |
+ |
tmflags = TM_F_HUMAN; |
746 |
+ |
strcpy(buf, "human exposure..."); |
747 |
+ |
goto remap; |
748 |
|
case '=': /* adjust exposure */ |
749 |
|
case '@': /* adaptation level */ |
750 |
|
if (avgbox(cval) == -1) |
761 |
|
comp = .5/comp; |
762 |
|
comp = log(comp)/.69315 - scale; |
763 |
|
n = comp < 0 ? comp-.5 : comp+.5 ; /* round */ |
764 |
< |
if (n == 0) |
765 |
< |
return(0); |
766 |
< |
scale_rcolors(ourras, pow(2.0, (double)n)); |
764 |
> |
if (tmflags != -1) |
765 |
> |
tmflags = -1; /* turn off tone mapping */ |
766 |
> |
else { |
767 |
> |
if (n == 0) /* else check if any change */ |
768 |
> |
return(0); |
769 |
> |
scale_rcolors(ourras, pow(2.0, (double)n)); |
770 |
> |
} |
771 |
|
scale += n; |
772 |
|
sprintf(buf, "%+d", scale); |
773 |
+ |
remap: |
774 |
|
XDrawImageString(thedisplay, wind, ourgc, |
775 |
|
box.xmin, box.ymin+box.ysiz, buf, strlen(buf)); |
776 |
|
XFlush(thedisplay); |
942 |
|
} |
943 |
|
|
944 |
|
|
945 |
+ |
make_tonemap() /* initialize tone mapping */ |
946 |
+ |
{ |
947 |
+ |
int flags, y; |
948 |
+ |
|
949 |
+ |
if (tmflags != -1 && fname == NULL) { |
950 |
+ |
fprintf(stderr, "%s: cannot adjust tone of standard input\n", |
951 |
+ |
progname); |
952 |
+ |
tmflags = -1; |
953 |
+ |
} |
954 |
+ |
if (tmflags == -1) { /* linear with clamping */ |
955 |
+ |
setcolrcor(pow, 1.0/gamcor); |
956 |
+ |
return; |
957 |
+ |
} |
958 |
+ |
flags = tmflags; /* histogram adjustment */ |
959 |
+ |
if (greyscale) flags |= TM_F_BW; |
960 |
+ |
if (tmTop != NULL) { /* reuse old histogram if one */ |
961 |
+ |
tmTop->flags = flags; |
962 |
+ |
} else { /* else initialize */ |
963 |
+ |
if ((lscan = (TMbright *)malloc(xmax*sizeof(TMbright))) == NULL) |
964 |
+ |
goto memerr; |
965 |
+ |
if (greyscale) { |
966 |
+ |
cscan = TM_NOCHROM; |
967 |
+ |
if ((pscan = (BYTE *)malloc(sizeof(BYTE)*xmax)) == NULL) |
968 |
+ |
goto memerr; |
969 |
+ |
} else if ((pscan=cscan = (BYTE *)malloc(3*sizeof(BYTE)*xmax)) |
970 |
+ |
== NULL) |
971 |
+ |
goto memerr; |
972 |
+ |
/* initialize tm library */ |
973 |
+ |
if (tmInit(flags, stdprims, gamcor) == NULL) |
974 |
+ |
goto memerr; |
975 |
+ |
if (tmSetSpace(stdprims, WHTEFFICACY/exposure)) |
976 |
+ |
goto tmerr; |
977 |
+ |
/* compute picture histogram */ |
978 |
+ |
for (y = 0; y < ymax; y++) { |
979 |
+ |
getscan(y); |
980 |
+ |
if (tmCvColrs(lscan, TM_NOCHROM, scanline, xmax)) |
981 |
+ |
goto tmerr; |
982 |
+ |
if (tmAddHisto(lscan, xmax, 1)) |
983 |
+ |
goto tmerr; |
984 |
+ |
} |
985 |
+ |
} |
986 |
+ |
/* (re)compute tone mapping */ |
987 |
+ |
if (tmComputeMapping(gamcor, 0., 0.)) |
988 |
+ |
goto tmerr; |
989 |
+ |
return; |
990 |
+ |
memerr: |
991 |
+ |
quiterr("out of memory in make_tonemap"); |
992 |
+ |
tmerr: |
993 |
+ |
quiterr("tone mapping error"); |
994 |
+ |
} |
995 |
+ |
|
996 |
+ |
|
997 |
+ |
tmap_colrs(scn, len) /* apply tone mapping to scanline */ |
998 |
+ |
register COLR *scn; |
999 |
+ |
int len; |
1000 |
+ |
{ |
1001 |
+ |
register BYTE *ps; |
1002 |
+ |
|
1003 |
+ |
if (tmflags == -1) { |
1004 |
+ |
if (scale) |
1005 |
+ |
shiftcolrs(scn, len, scale); |
1006 |
+ |
colrs_gambs(scn, len); |
1007 |
+ |
return; |
1008 |
+ |
} |
1009 |
+ |
if (len > xmax) |
1010 |
+ |
quiterr("code error 1 in tmap_colrs"); |
1011 |
+ |
if (tmCvColrs(lscan, cscan, scn, len)) |
1012 |
+ |
goto tmerr; |
1013 |
+ |
if (tmMapPixels(pscan, lscan, cscan, len)) |
1014 |
+ |
goto tmerr; |
1015 |
+ |
ps = pscan; |
1016 |
+ |
if (greyscale) |
1017 |
+ |
while (len--) { |
1018 |
+ |
scn[0][RED] = scn[0][GRN] = scn[0][BLU] = *ps++; |
1019 |
+ |
scn[0][EXP] = COLXS; |
1020 |
+ |
scn++; |
1021 |
+ |
} |
1022 |
+ |
else |
1023 |
+ |
while (len--) { |
1024 |
+ |
scn[0][RED] = *ps++; |
1025 |
+ |
scn[0][GRN] = *ps++; |
1026 |
+ |
scn[0][BLU] = *ps++; |
1027 |
+ |
scn[0][EXP] = COLXS; |
1028 |
+ |
scn++; |
1029 |
+ |
} |
1030 |
+ |
return; |
1031 |
+ |
tmerr: |
1032 |
+ |
quiterr("tone mapping error"); |
1033 |
+ |
} |
1034 |
+ |
|
1035 |
+ |
|
1036 |
|
getmono() /* get monochrome data */ |
1037 |
|
{ |
1038 |
|
register unsigned char *dp; |
1122 |
|
int y; |
1123 |
|
register unsigned int4 *dp; |
1124 |
|
register int x; |
1125 |
< |
/* set gamma correction */ |
1126 |
< |
setcolrgam(gamcor); |
1125 |
> |
/* initialize tone mapping */ |
1126 |
> |
make_tonemap(); |
1127 |
|
/* read and convert file */ |
1128 |
|
dp = (unsigned int4 *)ourdata; |
1129 |
|
for (y = 0; y < ymax; y++) { |
1130 |
|
getscan(y); |
1131 |
|
add2icon(y, scanline); |
1132 |
< |
if (scale) |
1013 |
< |
shiftcolrs(scanline, xmax, scale); |
1014 |
< |
colrs_gambs(scanline, xmax); |
1132 |
> |
tmap_colrs(scanline, xmax); |
1133 |
|
if (ourras->image->blue_mask & 1) |
1134 |
|
for (x = 0; x < xmax; x++) |
1135 |
|
*dp++ = (unsigned int4)scanline[x][RED] << 16 | |
1149 |
|
int y; |
1150 |
|
register unsigned char *dp; |
1151 |
|
register int x; |
1152 |
< |
/* set gamma correction */ |
1153 |
< |
setcolrgam(gamcor); |
1152 |
> |
/* initialize tone mapping */ |
1153 |
> |
make_tonemap(); |
1154 |
|
/* read and convert file */ |
1155 |
|
dp = ourdata; |
1156 |
|
for (y = 0; y < ymax; y++) { |
1157 |
|
getscan(y); |
1158 |
|
add2icon(y, scanline); |
1159 |
< |
if (scale) |
1042 |
< |
shiftcolrs(scanline, xmax, scale); |
1043 |
< |
for (x = 0; x < xmax; x++) |
1044 |
< |
scanline[x][GRN] = normbright(scanline[x]); |
1045 |
< |
colrs_gambs(scanline, xmax); |
1159 |
> |
tmap_colrs(scanline, xmax); |
1160 |
|
if (maxcolors < 256) |
1161 |
|
for (x = 0; x < xmax; x++) |
1162 |
< |
*dp++ = ((long)scanline[x][GRN] * |
1162 |
> |
*dp++ = ((int4)scanline[x][GRN] * |
1163 |
|
maxcolors + maxcolors/2) >> 8; |
1164 |
|
else |
1165 |
|
for (x = 0; x < xmax; x++) |
1167 |
|
} |
1168 |
|
for (x = 0; x < maxcolors; x++) |
1169 |
|
clrtab[x][RED] = clrtab[x][GRN] = |
1170 |
< |
clrtab[x][BLU] = ((long)x*256 + 128)/maxcolors; |
1170 |
> |
clrtab[x][BLU] = ((int4)x*256 + 128)/maxcolors; |
1171 |
|
} |
1172 |
|
|
1173 |
|
|
1177 |
|
/* make sure we can do it first */ |
1178 |
|
if (fname == NULL) |
1179 |
|
quiterr("cannot map colors from standard input"); |
1180 |
< |
/* set gamma correction */ |
1181 |
< |
setcolrgam(gamcor); |
1180 |
> |
/* initialize tone mapping */ |
1181 |
> |
make_tonemap(); |
1182 |
|
/* make histogram */ |
1183 |
< |
if (new_histo((long)xmax*ymax) == -1) |
1183 |
> |
if (new_histo((int4)xmax*ymax) == -1) |
1184 |
|
quiterr("cannot initialize histogram"); |
1185 |
|
for (y = 0; y < ymax; y++) { |
1186 |
|
if (getscan(y) < 0) |
1187 |
|
break; |
1188 |
|
add2icon(y, scanline); |
1189 |
< |
if (scale) |
1076 |
< |
shiftcolrs(scanline, xmax, scale); |
1077 |
< |
colrs_gambs(scanline, xmax); |
1189 |
> |
tmap_colrs(scanline, xmax); |
1190 |
|
cnt_colrs(scanline, xmax); |
1191 |
|
} |
1192 |
|
/* map pixels */ |
1194 |
|
quiterr("cannot create color map"); |
1195 |
|
for (y = 0; y < ymax; y++) { |
1196 |
|
getscan(y); |
1197 |
< |
if (scale) |
1086 |
< |
shiftcolrs(scanline, xmax, scale); |
1087 |
< |
colrs_gambs(scanline, xmax); |
1197 |
> |
tmap_colrs(scanline, xmax); |
1198 |
|
if (dither) |
1199 |
|
dith_colrs(ourdata+y*xmax, scanline, xmax); |
1200 |
|
else |