ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/tmprivat.h
Revision: 3.11
Committed: Mon Jul 14 04:56:54 2003 UTC (20 years, 9 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 3.10: +1 -2 lines
Log Message:
Added tone-mapping support for 16-bit/sample int and IEEE float TIFF images

File Contents

# Content
1 /* RCSid $Id: tmprivat.h,v 3.10 2003/06/27 06:53:22 greg Exp $ */
2 /*
3 * Private header file for tone mapping routines.
4 */
5 #ifndef _RAD_TMPRIVAT_H_
6 #define _RAD_TMPRIVAT_H_
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 #ifndef MEM_PTR
12 #define MEM_PTR void *
13 #endif
14 #include "color.h"
15 #include "tonemap.h"
16
17 /* required constants */
18 #ifndef M_LN2
19 #define M_LN2 0.69314718055994530942
20 #endif
21 #ifndef M_LN10
22 #define M_LN10 2.30258509299404568402
23 #endif
24 /* minimum values and defaults */
25 #define MINGAM 0.75
26 #define DEFGAM 2.2
27 #define MINLDDYN 2.
28 #define DEFLDDYN 32.
29 #define MINLDMAX 1.
30 #define DEFLDMAX 100.
31
32 #define BRT2SCALE(l2) (int)(M_LN2*TM_BRTSCALE*(l2) + ((l2)>0 ? .5 : -.5))
33
34 #define HISTEP 8 /* steps in BRTSCALE for each bin */
35
36 #define MINBRT (-16*TM_BRTSCALE) /* minimum usable brightness */
37 #define MINLUM (1.125352e-7) /* tmLuminance(MINBRT) */
38
39 #define LMESLOWER (5.62e-3) /* lower mesopic limit */
40 #define LMESUPPER (5.62) /* upper mesopic limit */
41 #if (TM_BRTSCALE==128)
42 #define BMESLOWER (-663) /* encoded LMESLOWER */
43 #define BMESUPPER (221) /* encoded LMESUPPER */
44 #else
45 #define BMESLOWER ((int)(-5.18*TM_BRTSCALE-.5))
46 #define BMESUPPER ((int)(1.73*TM_BRTSCALE+.5))
47 #endif
48 /* approximate scotopic lum. */
49 #define SCO_rf 0.062
50 #define SCO_gf 0.608
51 #define SCO_bf 0.330
52 #define scotlum(c) (SCO_rf*(c)[RED] + SCO_gf*(c)[GRN] + SCO_bf*(c)[BLU])
53 #define normscot(c) ( ( (int32)(SCO_rf*256.+.5)*(c)[RED] + \
54 (int32)(SCO_gf*256.+.5)*(c)[GRN] + \
55 (int32)(SCO_bf*256.+.5)*(c)[BLU] ) >> 8 )
56
57 #ifndef malloc
58 MEM_PTR malloc();
59 MEM_PTR calloc();
60 #endif
61 extern int tmErrorReturn();
62
63 /* lookup for mesopic scaling */
64 extern BYTE tmMesofact[BMESUPPER-BMESLOWER];
65
66 extern void tmMkMesofact(); /* build tmMesofact */
67
68 #define returnErr(code) return(tmErrorReturn(funcName,code))
69 #define returnOK return(TM_E_OK)
70
71 #define FEQ(a,b) ((a) < (b)+1e-5 && (b) < (a)+1e-5)
72
73 #define PRIMEQ(p1,p2) (FEQ((p1)[0][0],(p2)[0][0])&&FEQ((p1)[0][1],(p2)[0][1])\
74 &&FEQ((p1)[1][0],(p2)[1][0])&&FEQ((p1)[1][1],(p2)[1][1])\
75 &&FEQ((p1)[2][0],(p2)[2][0])&&FEQ((p1)[2][1],(p2)[2][1])\
76 &&FEQ((p1)[3][0],(p2)[3][0])&&FEQ((p1)[3][1],(p2)[3][1]))
77
78
79 #ifdef __cplusplus
80 }
81 #endif
82 #endif /* _RAD_TMPRIVAT_H_ */
83