| 1 |
– |
/* Copyright (c) 1998 Silicon Graphics, Inc. */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ SGI"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* Routines for tone mapping on Radiance RGBE and XYZE pictures. |
| 6 |
< |
* See tonemap.h for detailed function descriptions. |
| 6 |
> |
* |
| 7 |
> |
* Externals declared in tonemap.h |
| 8 |
|
*/ |
| 9 |
|
|
| 10 |
+ |
#include "copyright.h" |
| 11 |
+ |
|
| 12 |
|
#include <stdio.h> |
| 13 |
+ |
#include <string.h> |
| 14 |
|
#include <math.h> |
| 15 |
+ |
#include <time.h> |
| 16 |
|
#include "tmprivat.h" |
| 17 |
|
#include "resolu.h" |
| 18 |
|
|
| 19 |
+ |
#ifndef TM_PIC_CTRANS |
| 20 |
+ |
#define TM_PIC_CTRANS 1 /* transform colors? (expensive) */ |
| 21 |
+ |
#endif |
| 22 |
|
|
| 18 |
– |
extern char *tempbuffer(); |
| 19 |
– |
|
| 23 |
|
#define GAMTSZ 1024 |
| 24 |
|
|
| 25 |
|
typedef struct { |
| 28 |
|
TMbright inpsfb; /* encoded tm->inpsf */ |
| 29 |
|
} COLRDATA; |
| 30 |
|
|
| 31 |
+ |
#ifdef NOPROTO |
| 32 |
|
static MEM_PTR colrInit(); |
| 33 |
|
static void colrNewSpace(); |
| 34 |
< |
extern void free(); |
| 34 |
> |
#else |
| 35 |
> |
static MEM_PTR colrInit(struct tmStruct *); |
| 36 |
> |
static void colrNewSpace(struct tmStruct *); |
| 37 |
> |
#endif |
| 38 |
|
static struct tmPackage colrPkg = { /* our package functions */ |
| 39 |
|
colrInit, colrNewSpace, free |
| 40 |
|
}; |
| 42 |
|
|
| 43 |
|
#define LOGISZ 260 |
| 44 |
|
static TMbright logi[LOGISZ]; |
| 38 |
– |
static BYTE photofact[BMESUPPER-BMESLOWER]; |
| 45 |
|
|
| 46 |
|
|
| 47 |
|
int |
| 48 |
< |
tmCvColrs(ls, cs, scan, len) /* tone map RGBE/XYZE colors */ |
| 48 |
> |
tmCvColrs(ls, cs, scan, len) /* convert RGBE/XYZE colors */ |
| 49 |
|
TMbright *ls; |
| 50 |
|
BYTE *cs; |
| 51 |
|
COLR *scan; |
| 60 |
|
returnErr(TM_E_TMINVAL); |
| 61 |
|
if (ls == NULL | scan == NULL | len < 0) |
| 62 |
|
returnErr(TM_E_ILLEGAL); |
| 63 |
+ |
#if TM_PIC_CTRANS |
| 64 |
|
if (tmNeedMatrix(tmTop)) { /* need floating point */ |
| 65 |
+ |
#else |
| 66 |
+ |
if (tmTop->inppri == TM_XYZPRIM) { /* no way around this */ |
| 67 |
+ |
#endif |
| 68 |
|
register COLOR *newscan; |
| 69 |
|
newscan = (COLOR *)tempbuffer(len*sizeof(COLOR)); |
| 70 |
|
if (newscan == NULL) |
| 73 |
|
colr_color(newscan[i], scan[i]); |
| 74 |
|
return(tmCvColors(ls, cs, newscan, len)); |
| 75 |
|
} |
| 76 |
< |
if (colrReg == -1) { /* build tables if necessary */ |
| 76 |
> |
if (colrReg < 0) { /* build tables if necessary */ |
| 77 |
|
colrReg = tmRegPkg(&colrPkg); |
| 78 |
|
if (colrReg < 0) |
| 79 |
|
returnErr(TM_E_CODERR1); |
| 80 |
|
for (i = 256; i--; ) |
| 81 |
|
logi[i] = TM_BRTSCALE*log((i+.5)/256.) - .5; |
| 82 |
|
for (i = 256; i < LOGISZ; i++) |
| 83 |
< |
logi[i] = logi[255]; |
| 84 |
< |
for (i = BMESLOWER; i < BMESUPPER; i++) |
| 75 |
< |
photofact[i-BMESLOWER] = 256. * |
| 76 |
< |
(tmLuminance(i) - LMESLOWER) / |
| 77 |
< |
(LMESUPPER - LMESLOWER); |
| 83 |
> |
logi[i] = 0; |
| 84 |
> |
tmMkMesofact(); |
| 85 |
|
} |
| 86 |
|
if ((cd = (COLRDATA *)tmPkgData(tmTop,colrReg)) == NULL) |
| 87 |
|
returnErr(TM_E_NOMEM); |
| 91 |
|
li = ( cd->clfb[RED]*cmon[RED] + |
| 92 |
|
cd->clfb[GRN]*cmon[GRN] + |
| 93 |
|
cd->clfb[BLU]*cmon[BLU] ) >> 8; |
| 94 |
< |
bi = BRT2SCALE*(cmon[EXP]-COLXS) + |
| 94 |
> |
bi = BRT2SCALE(cmon[EXP]-COLXS) + |
| 95 |
|
logi[li] + cd->inpsfb; |
| 96 |
< |
if (bi < MINBRT) { |
| 97 |
< |
bi = MINBRT-1; /* bogus value */ |
| 98 |
< |
li++; /* avoid li==0 */ |
| 96 |
> |
if (li <= 0) { |
| 97 |
> |
bi = TM_NOBRT; /* bogus value */ |
| 98 |
> |
li = 1; /* avoid li==0 */ |
| 99 |
|
} |
| 100 |
|
ls[i] = bi; |
| 101 |
|
if (cs == TM_NOCHROM) /* no color? */ |
| 102 |
|
continue; |
| 96 |
– |
if (tmTop->flags & TM_F_BW) |
| 97 |
– |
cmon[RED] = cmon[GRN] = cmon[BLU] = li; |
| 103 |
|
/* mesopic adj. */ |
| 104 |
|
if (tmTop->flags & TM_F_MESOPIC && bi < BMESUPPER) { |
| 105 |
|
register int pf, sli = normscot(cmon); |
| 106 |
|
if (bi < BMESLOWER) |
| 107 |
|
cmon[RED] = cmon[GRN] = cmon[BLU] = sli; |
| 108 |
|
else { |
| 109 |
< |
pf = photofact[bi-BMESLOWER]; |
| 109 |
> |
if (tmTop->flags & TM_F_BW) |
| 110 |
> |
cmon[RED] = cmon[GRN] = cmon[BLU] = li; |
| 111 |
> |
pf = tmMesofact[bi-BMESLOWER]; |
| 112 |
|
sli *= 256 - pf; |
| 113 |
|
cmon[RED] = ( sli + pf*cmon[RED] ) >> 8; |
| 114 |
|
cmon[GRN] = ( sli + pf*cmon[GRN] ) >> 8; |
| 115 |
|
cmon[BLU] = ( sli + pf*cmon[BLU] ) >> 8; |
| 116 |
|
} |
| 117 |
+ |
} else if (tmTop->flags & TM_F_BW) { |
| 118 |
+ |
cmon[RED] = cmon[GRN] = cmon[BLU] = li; |
| 119 |
|
} |
| 120 |
|
bi = ( (int4)GAMTSZ*cd->clfb[RED]*cmon[RED]/li ) >> 8; |
| 121 |
|
cs[3*i ] = bi>=GAMTSZ ? 255 : cd->gamb[bi]; |
| 155 |
|
rh->format = FMTCIE; |
| 156 |
|
else |
| 157 |
|
rh->format = FMTBAD; |
| 158 |
< |
return; |
| 158 |
> |
return(0); |
| 159 |
|
} |
| 160 |
|
if (isexpos(s)) { |
| 161 |
|
rh->expos *= exposval(s); |
| 162 |
< |
return; |
| 162 |
> |
return(0); |
| 163 |
|
} |
| 164 |
|
if (isprims(s)) { |
| 165 |
|
primsval(rh->mypri, s); |
| 166 |
|
rh->primp = rh->mypri; |
| 167 |
< |
return; |
| 167 |
> |
return(0); |
| 168 |
|
} |
| 169 |
+ |
return(0); |
| 170 |
|
} |
| 171 |
|
|
| 172 |
|
|
| 193 |
|
*xp = *yp = 0; /* error precaution */ |
| 194 |
|
if ((inpf = fp) == TM_GETFILE && (inpf = fopen(fname, "r")) == NULL) |
| 195 |
|
returnErr(TM_E_BADFILE); |
| 196 |
+ |
*lpp = NULL; |
| 197 |
+ |
if (cpp != TM_NOCHROMP) *cpp = NULL; |
| 198 |
|
info = rhdefault; /* get our header */ |
| 199 |
|
getheader(inpf, headline, (char *)&info); |
| 200 |
|
if (info.format == FMTBAD | info.expos <= 0. || |
| 237 |
|
if (fp == NULL) |
| 238 |
|
fclose(inpf); |
| 239 |
|
if (scanin != NULL) |
| 240 |
< |
free((char *)scanin); |
| 241 |
< |
if (err != TM_E_OK) |
| 240 |
> |
free((MEM_PTR)scanin); |
| 241 |
> |
if (err != TM_E_OK) { |
| 242 |
> |
if (*lpp != NULL) |
| 243 |
> |
free((MEM_PTR)*lpp); |
| 244 |
> |
if (cpp != TM_NOCHROMP && *cpp != NULL) |
| 245 |
> |
free((MEM_PTR)*cpp); |
| 246 |
|
returnErr(err); |
| 247 |
+ |
} |
| 248 |
|
returnOK; |
| 249 |
|
} |
| 250 |
|
|
| 251 |
|
|
| 252 |
+ |
#ifdef PCOND |
| 253 |
|
int /* run pcond to map picture */ |
| 254 |
|
dopcond(psp, xp, yp, flags, monpri, gamval, Lddyn, Ldmax, fname) |
| 255 |
|
BYTE **psp; |
| 260 |
|
char *fname; |
| 261 |
|
{ |
| 262 |
|
char *funcName = fname; |
| 263 |
< |
char cmdbuf[512]; |
| 263 |
> |
char cmdbuf[1024]; |
| 264 |
|
FILE *infp; |
| 265 |
|
register COLR *scan; |
| 266 |
|
register BYTE *rp; |
| 270 |
|
if (setcolrcor(pow, 1./gamval) < 0) |
| 271 |
|
returnErr(TM_E_NOMEM); |
| 272 |
|
/* create command */ |
| 273 |
< |
strcpy(cmdbuf, "pcond "); |
| 273 |
> |
strcpy(cmdbuf, PCOND); |
| 274 |
|
if (flags & TM_F_HCONTR) |
| 275 |
< |
strcat(cmdbuf, "-s "); |
| 275 |
> |
strcat(cmdbuf, " -s"); |
| 276 |
|
if (flags & TM_F_MESOPIC) |
| 277 |
< |
strcat(cmdbuf, "-c "); |
| 277 |
> |
strcat(cmdbuf, " -c"); |
| 278 |
|
if (flags & TM_F_LINEAR) |
| 279 |
< |
strcat(cmdbuf, "-l "); |
| 279 |
> |
strcat(cmdbuf, " -l"); |
| 280 |
|
if (flags & TM_F_ACUITY) |
| 281 |
< |
strcat(cmdbuf, "-a "); |
| 281 |
> |
strcat(cmdbuf, " -a"); |
| 282 |
|
if (flags & TM_F_VEIL) |
| 283 |
< |
strcat(cmdbuf, "-v "); |
| 283 |
> |
strcat(cmdbuf, " -v"); |
| 284 |
|
if (flags & TM_F_CWEIGHT) |
| 285 |
< |
strcat(cmdbuf, "-w "); |
| 286 |
< |
sprintf(cmdbuf+strlen(cmdbuf), |
| 287 |
< |
"-p %f %f %f %f %f %f %f %f -d %f -u %f %s", |
| 288 |
< |
monpri[RED][CIEX], monpri[RED][CIEY], |
| 289 |
< |
monpri[GRN][CIEX], monpri[GRN][CIEY], |
| 290 |
< |
monpri[BLU][CIEX], monpri[BLU][CIEY], |
| 291 |
< |
monpri[WHT][CIEX], monpri[WHT][CIEY], |
| 292 |
< |
Lddyn, Ldmax, fname); |
| 285 |
> |
strcat(cmdbuf, " -w"); |
| 286 |
> |
if (monpri != stdprims) |
| 287 |
> |
sprintf(cmdbuf+strlen(cmdbuf), " -p %f %f %f %f %f %f %f %f", |
| 288 |
> |
monpri[RED][CIEX], monpri[RED][CIEY], |
| 289 |
> |
monpri[GRN][CIEX], monpri[GRN][CIEY], |
| 290 |
> |
monpri[BLU][CIEX], monpri[BLU][CIEY], |
| 291 |
> |
monpri[WHT][CIEX], monpri[WHT][CIEY]); |
| 292 |
> |
sprintf(cmdbuf+strlen(cmdbuf), " -d %f -u %f %s", Lddyn, Ldmax, fname); |
| 293 |
|
/* start pcond */ |
| 294 |
|
if ((infp = popen(cmdbuf, "r")) == NULL) |
| 295 |
|
returnErr(TM_E_BADFILE); |
| 313 |
|
for (y = 0; y < *yp; y++) { |
| 314 |
|
if (freadcolrs(scan, *xp, infp) < 0) { |
| 315 |
|
pclose(infp); |
| 316 |
< |
free((char *)scan); |
| 317 |
< |
free((char *)*psp); |
| 316 |
> |
free((MEM_PTR)scan); |
| 317 |
> |
free((MEM_PTR)*psp); |
| 318 |
|
*psp = NULL; |
| 319 |
|
returnErr(TM_E_BADFILE); |
| 320 |
|
} |
| 329 |
|
*rp++ = scan[x][BLU]; |
| 330 |
|
} |
| 331 |
|
} |
| 332 |
< |
free((char *)scan); |
| 332 |
> |
free((MEM_PTR)scan); |
| 333 |
|
pclose(infp); |
| 334 |
|
returnOK; |
| 335 |
|
} |
| 336 |
+ |
#endif |
| 337 |
|
|
| 338 |
|
|
| 339 |
|
int /* map a Radiance picture */ |
| 347 |
|
FILE *fp; |
| 348 |
|
{ |
| 349 |
|
char *funcName = fname==NULL ? "tmMapPicture" : fname; |
| 331 |
– |
FILE *inpf; |
| 350 |
|
BYTE *cp; |
| 351 |
|
TMbright *lp; |
| 352 |
|
int err; |
| 359 |
|
if (Lddyn < MINLDDYN) Lddyn = DEFLDDYN; |
| 360 |
|
if (Ldmax < MINLDMAX) Ldmax = DEFLDMAX; |
| 361 |
|
if (flags & TM_F_BW) monpri = stdprims; |
| 362 |
+ |
#ifdef PCOND |
| 363 |
|
/* check for pcond run */ |
| 364 |
|
if (fp == TM_GETFILE && flags & TM_F_UNIMPL) |
| 365 |
|
return( dopcond(psp, xp, yp, flags, |
| 366 |
|
monpri, gamval, Lddyn, Ldmax, fname) ); |
| 367 |
+ |
#endif |
| 368 |
|
/* initialize tone mapping */ |
| 369 |
|
if (tmInit(flags, monpri, gamval) == NULL) |
| 370 |
|
returnErr(TM_E_NOMEM); |
| 379 |
|
if (flags & TM_F_BW) { |
| 380 |
|
*psp = (BYTE *)malloc(sizeof(BYTE) * *xp * *yp); |
| 381 |
|
if (*psp == NULL) { |
| 382 |
< |
free((char *)lp); |
| 382 |
> |
free((MEM_PTR)lp); |
| 383 |
|
tmDone(NULL); |
| 384 |
|
returnErr(TM_E_NOMEM); |
| 385 |
|
} |
| 397 |
|
err = tmMapPixels(*psp, lp, cp, *xp * *yp); |
| 398 |
|
|
| 399 |
|
done: /* clean up */ |
| 400 |
< |
free((char *)lp); |
| 400 |
> |
free((MEM_PTR)lp); |
| 401 |
|
tmDone(NULL); |
| 402 |
|
if (err != TM_E_OK) { /* free memory on error */ |
| 403 |
< |
free((char *)*psp); |
| 403 |
> |
free((MEM_PTR)*psp); |
| 404 |
|
*psp = NULL; |
| 405 |
|
returnErr(err); |
| 406 |
|
} |