ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/color.h
(Generate patch)

Comparing ray/src/common/color.h (file contents):
Revision 2.12 by greg, Thu Jan 30 19:14:37 1997 UTC vs.
Revision 2.39 by greg, Fri Nov 17 20:02:07 2023 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Regents of the University of California */
2 <
3 < /* SCCSid "$SunId$ LBL" */
4 <
1 > /* RCSid $Id$ */
2   /*
3 < *  color.h - header for routines using pixel color values.
3 > *  color.h - header for routines using pixel color and spectral values
4   *
8 *     12/31/85
9 *
5   *  Two color representations are used, one for calculation and
6   *  another for storage.  Calculation is done with three floats
7   *  for speed.  Stored color values use 4 bytes which contain
8   *  three single byte mantissas and a common exponent.
9 + *
10 + *  Spectral colors have between 3 and MAXCSAMP samples, and cover
11 + *  wavelengths from WLPART[0] to WLPART[3] (max to min nanometers).
12 + *  Wavelengths WLPART[1] and WLPART[2] mark the separation
13 + *  of red/green and green/blue intervals, respectively.
14 + *  The wavelength range may go well beyond visible in either
15 + *  direction, but some routines will average over each interval
16 + *  and designate the means as R, G, and B, regardless.
17 + *  The number of samples is set in CNDX[3], and CNDX[0,1,2]
18 + *  give peak wavelength indices corresponding to stdprims.
19 + *  For best accuracy, internal calculations are promoted to
20 + *  the current number of samples and final conversions
21 + *  to tristimulus should use scolor_rgb() or scolor_cie().
22 + *
23 + *  A new Radiance format is provided for spectral pictures,
24 + *  and spectral colors must be converted by caller using
25 + *  convertscolor() if the sampling doesn't match.
26   */
27 + #ifndef _RAD_COLOR_H_
28 + #define _RAD_COLOR_H_
29  
30 + #include <stdio.h>
31 + #include <stdlib.h>
32 + #include <string.h>
33 +
34 + #ifdef __cplusplus
35 + extern "C" {
36 + #endif
37 +
38 + #ifndef MAXCSAMP
39 + #define MAXCSAMP        24      /* maximum # spectral samples */
40 + #endif
41 +
42   #define  RED            0
43   #define  GRN            1
44   #define  BLU            2
# Line 23 | Line 49
49   #define  COLXS          128     /* excess used for exponent */
50   #define  WHT            3       /* used for RGBPRIMS type */
51  
52 < typedef unsigned char  BYTE;    /* 8-bit unsigned integer */
52 > #undef uby8
53 > #define uby8  unsigned char     /* 8-bit unsigned integer */
54  
55 < typedef BYTE  COLR[4];          /* red, green, blue (or X,Y,Z), exponent */
55 > typedef uby8  COLR[4];          /* red, green, blue (or X,Y,Z), exponent */
56 > typedef uby8  SCOLR[MAXCSAMP+1];        /* spectral color, common exponent */
57  
58 < typedef float  COLOR[3];        /* red, green, blue (or X,Y,Z) */
58 > typedef float COLORV;
59 > typedef COLORV  COLOR[3];       /* red, green, blue (or X,Y,Z) */
60 > typedef COLORV  SCOLOR[MAXCSAMP];       /* spectral color */
61  
62   typedef float  RGBPRIMS[4][2];  /* (x,y) chromaticities for RGBW */
63   typedef float  (*RGBPRIMP)[2];  /* pointer to RGBPRIMS array */
# Line 37 | Line 67 | typedef float  COLORMAT[3][3]; /* color coordinate con
67   #define  copycolr(c1,c2)        (c1[0]=c2[0],c1[1]=c2[1], \
68                                  c1[2]=c2[2],c1[3]=c2[3])
69  
70 < #define  colval(col,pri)        ((col)[pri])
70 > #define  colval(col,pri)        (col)[pri]
71  
72   #define  setcolor(col,r,g,b)    ((col)[RED]=(r),(col)[GRN]=(g),(col)[BLU]=(b))
73  
44 #define  copycolor(c1,c2)       ((c1)[0]=(c2)[0],(c1)[1]=(c2)[1],(c1)[2]=(c2)[2])
45
74   #define  scalecolor(col,sf)     ((col)[0]*=(sf),(col)[1]*=(sf),(col)[2]*=(sf))
75  
76 < #define  addcolor(c1,c2)        ((c1)[0]+=(c2)[0],(c1)[1]+=(c2)[1],(c1)[2]+=(c2)[2])
76 > #define  opcolor(c1,op,c2)      ((c1)[0]op(c2)[0],(c1)[1]op(c2)[1],(c1)[2]op(c2)[2])
77  
78 < #define  multcolor(c1,c2)       ((c1)[0]*=(c2)[0],(c1)[1]*=(c2)[1],(c1)[2]*=(c2)[2])
78 > #define  copycolor(c1,c2)       opcolor(c1,=,c2)
79  
80 < #ifdef  NTSC
80 > #define  addcolor(c1,c2)        opcolor(c1,+=,c2)
81 >
82 > #define  multcolor(c1,c2)       opcolor(c1,*=,c2)
83 >
84 > #define NCSAMP  CNDX[EXP]       /* current number of spectral samples */
85 > #define LSCOLR  (NCSAMP+1)
86 >
87 > #define  copyscolr(sc1,sc2)     memcpy(sc1,sc2,LSCOLR)
88 >
89 > #define  scolval(sc,pri)        (sc)[CNDX[pri]]
90 >
91 > #define  copyscolor(sc1,sc2)    memcpy(sc1,sc2,sizeof(COLORV)*NCSAMP)
92 >
93 > #define  scalescolor(sc,sf)     {const float _f=sf; int _i=NCSAMP; \
94 >                                        while (_i--) (sc)[_i] *= _f;}
95 >
96 >                                /* faster, use principal colors for RGB */
97 > #define pcolor_color(col,scol)  setcolor(col,scolval(scol,RED),\
98 >                                        scolval(scol,GRN),scolval(scol,BLU))
99 > #define pcolor_colr(clr,scol)   setcolr(clr,scolval(scol,RED),\
100 >                                        scolval(scol,GRN),scolval(scol,BLU))
101 >
102 > #define  sopscolor(sc1,op,sc2)  {int _i=NCSAMP; while (_i--) (sc1)[_i] op (sc2)[_i];}
103 >
104 > #define  saddscolor(sc1,sc2)    sopscolor(sc1,+=,sc2)
105 >
106 > #define  smultscolor(sc1,sc2)   sopscolor(sc1,*=,sc2)
107 >
108 > #define  scolrblack(c)          memset(c,0,LSCOLR)
109 >
110 > #define  scolorblack(c)         memset(c,0,sizeof(COLORV)*MAXCSAMP)
111 >
112 > #define scolor_color(col,scol)  scolor2color(col,scol,NCSAMP,WLPART)
113 > #define scolor_colr(clr,scol)   scolor2colr(clr,scol,NCSAMP,WLPART)
114 > #define scolor_scolr(sclr,scol) scolor2scolr(sclr,scol,NCSAMP)
115 > #define scolr_scolor(scol,sclr) scolr2scolor(scol,sclr,NCSAMP)
116 > #define scolr_color(col,sclr)   scolr2color(col,sclr,NCSAMP,WLPART)
117 >
118 > #define  sopcolor(sc1,op,c2)    {SCOLOR _sct;\
119 >                                        setscolor(_sct,c2[RED],c2[GRN],c2[BLU]);\
120 >                                        sopscolor(sc1,op,_sct);}
121 >
122 > #define  saddcolor(sc1,c2)      sopcolor(sc1,+=,c2)
123 >
124 > #define  smultcolor(sc1,c2)     sopcolor(sc1,*=,c2)
125 >
126 > #define  opscolor(c1,op,sc2)    {COLOR _ct; scolor_color(_ct,sc2);\
127 >                                        opcolor(c1,op,_ct);}
128 >
129 > #define  addscolor(c1,sc2)      opscolor(c1,+=,sc2)
130 >
131 > #define  multscolor(c1,sc2)     opscolor(c1,*=,sc2)
132 >
133 > #if defined(NTSC_RGB)
134   #define  CIE_x_r                0.670           /* standard NTSC primaries */
135   #define  CIE_y_r                0.330
136   #define  CIE_x_g                0.210
137   #define  CIE_y_g                0.710
138   #define  CIE_x_b                0.140
139   #define  CIE_y_b                0.080
140 < #define  CIE_x_w                0.3333          /* use true white */
141 < #define  CIE_y_w                0.3333
140 > #define  CIE_x_w                (1./3.)         /* use EE white */
141 > #define  CIE_y_w                (1./3.)
142 > #elif defined(SHARP_RGB)
143 > #define  CIE_x_r                0.6898          /* "sharp" RGB primaries */
144 > #define  CIE_y_r                0.3206
145 > #define  CIE_x_g                0.0736
146 > #define  CIE_y_g                0.9003
147 > #define  CIE_x_b                0.1166
148 > #define  CIE_y_b                0.0374
149 > #define  CIE_x_w                (1./3.)         /* use EE white */
150 > #define  CIE_y_w                (1./3.)
151   #else
152   #define  CIE_x_r                0.640           /* nominal CRT primaries */
153   #define  CIE_y_r                0.330
# Line 65 | Line 155 | typedef float  COLORMAT[3][3]; /* color coordinate con
155   #define  CIE_y_g                0.600
156   #define  CIE_x_b                0.150
157   #define  CIE_y_b                0.060
158 < #define  CIE_x_w                0.3333          /* use true white */
159 < #define  CIE_y_w                0.3333
158 > #define  CIE_x_w                (1./3.)         /* use EE white */
159 > #define  CIE_y_w                (1./3.)
160   #endif
161  
162 < #define  STDPRIMS       {CIE_x_r,CIE_y_r,CIE_x_g,CIE_y_g, \
163 <                                CIE_x_b,CIE_y_b,CIE_x_w,CIE_y_w}
162 > #define  STDPRIMS       {{CIE_x_r,CIE_y_r},{CIE_x_g,CIE_y_g}, \
163 >                                {CIE_x_b,CIE_y_b},{CIE_x_w,CIE_y_w}}
164  
165   #define CIE_D           (       CIE_x_r*(CIE_y_g - CIE_y_b) + \
166                                  CIE_x_g*(CIE_y_b - CIE_y_r) + \
# Line 92 | Line 182 | typedef float  COLORMAT[3][3]; /* color coordinate con
182   #define CIE_gf          (CIE_y_g*CIE_C_gD/CIE_D)
183   #define CIE_bf          (CIE_y_b*CIE_C_bD/CIE_D)
184  
185 < /* As of 9-94, CIE_rf=.265074126, CIE_gf=.670114631 and CIE_bf=.064811243 */
185 > /* Default CIE_rf=.265074126, CIE_gf=.670114631 and CIE_bf=.064811243 */
186  
187 < /***** The following definitions are valid for RGB colors only... *****/
187 > /***** The following definitions are not for XYZ colors *****/
188  
189   #define  bright(col)    (CIE_rf*(col)[RED]+CIE_gf*(col)[GRN]+CIE_bf*(col)[BLU])
190 + #define  pbright(col)   (CIE_rf*scolval(col,RED) + CIE_gf*scolval(col,GRN) + \
191 +                                CIE_bf*scolval(col,BLU))
192   #define  normbright(c)  ( ( (long)(CIE_rf*256.+.5)*(c)[RED] + \
193                              (long)(CIE_gf*256.+.5)*(c)[GRN] + \
194                              (long)(CIE_bf*256.+.5)*(c)[BLU] ) >> 8 )
195 + #define  normpbright(c) ( ( (long)(CIE_rf*256.+.5)*(c)[CNDX[RED]] + \
196 +                            (long)(CIE_gf*256.+.5)*(c)[CNDX[GRN]] + \
197 +                            (long)(CIE_bf*256.+.5)*(c)[CNDX[BLU]] ) >> 8 )
198  
199                                  /* luminous efficacies over visible spectrum */
200   #define  MAXEFFICACY            683.            /* defined maximum at 550 nm */
201 < #define  WHTEFFICACY            179.            /* uniform white light */
201 > #define  WHTEFFICACY            179.            /* equal energy white 380-780nm */
202   #define  D65EFFICACY            203.            /* standard illuminant D65 */
203   #define  INCEFFICACY            160.            /* illuminant A (incand.) */
204   #define  SUNEFFICACY            208.            /* illuminant B (solar dir.) */
205 < #define  SKYEFFICACY            D65EFFICACY     /* skylight */
205 > #define  SKYEFFICACY            D65EFFICACY     /* skylight (should be 110) */
206   #define  DAYEFFICACY            D65EFFICACY     /* combined sky and solar */
207 + #define  WHTSCOTOPIC            412.            /* scotopic EE white 380-780nm */
208 + #define  WHTMELANOPIC           179.            /* melanopic EE white 380-780nm */
209  
210   #define  luminance(col)         (WHTEFFICACY * bright(col))
211 + #define  pluminance(scol)       (WHTEFFICACY * pbright(scol))
212  
213 + #define  scolor_rgb(col,scol)   scolor2rgb(col,scol,NCSAMP,WLPART)
214 +
215   /***** ...end of stuff specific to RGB colors *****/
216  
217 + #define  scolor_cie(col,scol)   scolor2cie(col,scol,NCSAMP,WLPART)
218 +
219 + #define  sluminance(scol)       (WHTEFFICACY * scolor_photopic(scol))
220 +
221   #define  intens(col)            ( (col)[0] > (col)[1] \
222                                  ? (col)[0] > (col)[2] ? (col)[0] : (col)[2] \
223                                  : (col)[1] > (col)[2] ? (col)[1] : (col)[2] )
# Line 122 | Line 226 | typedef float  COLORMAT[3][3]; /* color coordinate con
226                                  ldexp((c)[p]+.5,(int)(c)[EXP]-(COLXS+8)) : \
227                                  0. )
228  
229 + #define  scolrval(c,p)          ( (c)[CNDX[EXP]] ? \
230 +                                ldexp((c)[CNDX[p]]+.5,(int)(c)[CNDX[EXP]]-(COLXS+8)) : \
231 +                                0. )
232 +
233   #define  WHTCOLOR               {1.0,1.0,1.0}
234   #define  BLKCOLOR               {0.0,0.0,0.0}
235   #define  WHTCOLR                {128,128,128,COLXS+1}
# Line 131 | Line 239 | typedef float  COLORMAT[3][3]; /* color coordinate con
239   #define  COLRFMT                "32-bit_rle_rgbe"
240   #define  CIEFMT                 "32-bit_rle_xyze"
241   #define  PICFMT                 "32-bit_rle_???e"       /* matches either */
242 < #define  LPICFMT                15                      /* max format id len */
242 > #define  SPECFMT                "Radiance_rle_spectra"  /* spectral data w/ exponent */
243 > #define  LPICFMT                21                      /* max format id len */
244  
245 +                                /* Number of spectral components */
246 + #define  NCOMPSTR               "NCOMP="
247 + #define  LNCOMPSTR              6
248 + #define  isncomp(hl)            (!strncmp(hl,NCOMPSTR,LNCOMPSTR))
249 + #define  ncompval(hl)           atoi((hl)+LNCOMPSTR)
250 + #define  fputncomp(nc,fp)       fprintf(fp,"%s%d\n",NCOMPSTR,nc)
251 +
252 +                                /* 4 wavelength partitions for (IR+)R,G,B(+UV) */
253 + #define  WLSPLTSTR              "WAVELENGTH_SPLITS="
254 + #define  LWLSPLTSTR             18
255 + #define  iswlsplit(hl)          (!strncmp(hl,WLSPLTSTR,LWLSPLTSTR))
256 + #define  wlsplitval(w,hl)       (sscanf((hl)+LWLSPLTSTR,"%f %f %f %f",\
257 +                                        &(w)[0],&(w)[1],&(w)[2],&(w)[3]) == 4)
258 + #define  fputwlsplit(w,fp)      fprintf(fp,"%s %g %g %g %g\n",WLSPLTSTR,\
259 +                                        (w)[0],(w)[1],(w)[2],(w)[3])
260 +
261                                  /* macros for exposures */
262   #define  EXPOSSTR               "EXPOSURE="
263   #define  LEXPOSSTR              9
264   #define  isexpos(hl)            (!strncmp(hl,EXPOSSTR,LEXPOSSTR))
265   #define  exposval(hl)           atof((hl)+LEXPOSSTR)
266 < #define  fputexpos(ex,fp)       fprintf(fp,"%s%e\n",EXPOSSTR,ex)
266 > #define  fputexpos(ex,fp)       fprintf(fp,"%s%.4e\n",EXPOSSTR,ex)
267  
268                                  /* macros for pixel aspect ratios */
269   #define  ASPECTSTR              "PIXASPECT="
# Line 151 | Line 276 | typedef float  COLORMAT[3][3]; /* color coordinate con
276   #define  PRIMARYSTR             "PRIMARIES="
277   #define  LPRIMARYSTR            10
278   #define  isprims(hl)            (!strncmp(hl,PRIMARYSTR,LPRIMARYSTR))
279 < #define  primsval(p,hl)         sscanf(hl+LPRIMARYSTR, \
279 > #define  primsval(p,hl)         (sscanf((hl)+LPRIMARYSTR, \
280                                          "%f %f %f %f %f %f %f %f", \
281                                          &(p)[RED][CIEX],&(p)[RED][CIEY], \
282                                          &(p)[GRN][CIEX],&(p)[GRN][CIEY], \
283                                          &(p)[BLU][CIEX],&(p)[BLU][CIEY], \
284 <                                        &(p)[WHT][CIEX],&(p)[WHT][CIEY])
284 >                                        &(p)[WHT][CIEX],&(p)[WHT][CIEY]) == 8)
285   #define  fputprims(p,fp)        fprintf(fp, \
286                                  "%s %.4f %.4f %.4f %.4f %.4f %.4f %.4f %.4f\n",\
287                                          PRIMARYSTR, \
# Line 169 | Line 294 | typedef float  COLORMAT[3][3]; /* color coordinate con
294   #define  COLCORSTR              "COLORCORR="
295   #define  LCOLCORSTR             10
296   #define  iscolcor(hl)           (!strncmp(hl,COLCORSTR,LCOLCORSTR))
297 < #define  colcorval(cc,hl)       sscanf(hl+LCOLCORSTR,"%f %f %f", \
297 > #define  colcorval(cc,hl)       sscanf((hl)+LCOLCORSTR,"%f %f %f", \
298                                          &(cc)[RED],&(cc)[GRN],&(cc)[BLU])
299   #define  fputcolcor(cc,fp)      fprintf(fp,"%s %f %f %f\n",COLCORSTR, \
300                                          (cc)[RED],(cc)[GRN],(cc)[BLU])
301  
177 #ifdef  DCL_ATOF
178 extern double  atof(), ldexp(), frexp();
179 #endif
180
302   /*
303   * Conversions to and from XYZ space generally don't apply WHTEFFICACY.
304   * If you need Y to be luminance (cd/m^2), this must be applied when
305   * converting from radiance (watts/sr/m^2).
306   */
307  
308 < extern RGBPRIMS  stdprims;              /* standard primary chromaticities */
309 < extern COLORMAT  rgb2xyzmat;            /* RGB to XYZ conversion matrix */
310 < extern COLORMAT  xyz2rgbmat;            /* XYZ to RGB conversion matrix */
308 > extern int  CNDX[4];            /* RGBE indices for SCOLOR, SCOLR */
309 > extern float  WLPART[4];        /* RGB wavelength limits+partitions (nm) */
310 > extern RGBPRIMS  stdprims;      /* standard primary chromaticities */
311 > extern RGBPRIMS  xyzprims;      /* to indicate XYZ input or output */
312 > extern COLORMAT  rgb2xyzmat;    /* RGB to XYZ conversion matrix */
313 > extern COLORMAT  xyz2rgbmat;    /* XYZ to RGB conversion matrix */
314 > extern COLOR  cblack, cwhite;   /* black (0,0,0) and white (1,1,1) */
315  
316 < #define  cie_rgb(rgb,xyz)       colortrans(rgb,xyz2rgbmat,xyz,1)
317 < #define  rgb_cie(xyz,rgb)       colortrans(xyz,rgb2xyzmat,rgb,1)
316 > #define  CGAMUT_LOWER           01
317 > #define  CGAMUT_UPPER           02
318 > #define  CGAMUT                 (CGAMUT_LOWER|CGAMUT_UPPER)
319  
320 < #ifdef BSD
321 < #define  cpcolormat(md,ms)      bcopy((char *)ms,(char *)md,sizeof(COLORMAT))
322 < #else
323 < extern char  *memcpy();
324 < #define  cpcolormat(md,ms)      (void)memcpy((char *)md,(char *)ms,sizeof(COLORMAT))
320 > #define  rgb_cie(xyz,rgb)       colortrans(xyz,rgb2xyzmat,rgb)
321 >
322 > #define  cpcolormat(md,ms)      memcpy((void *)md,(void *)ms,sizeof(COLORMAT))
323 >
324 >                                        /* defined in color.c */
325 > extern void     *tempbuffer(size_t len);
326 >                                /* in cn[3]=nsamps, wlpt[0],wlpt[3]=extrema */
327 > extern int      setspectrsamp(int cn[4], float wlpt[4]);
328 > extern int      fwritecolrs(COLR *scanline, int len, FILE *fp);
329 > extern int      fwritescan(COLOR *scanline, int len, FILE *fp);
330 > extern int      fwritescolrs(uby8 *sscanline, int len, FILE *fp);
331 > extern int      fwritesscan(COLORV *sscanline, int len, FILE *fp);
332 > extern int      freadcolrs(COLR *scanline, int len, FILE *fp);
333 > extern int      freadscan(COLOR *scanline, int len, FILE *fp);
334 > extern int      freadscolrs(uby8 *scanline, int nc, int len, FILE *fp);
335 > extern int      freadsscan(COLORV *sscanline, int nc, int len, FILE *fp);
336 >                                /* spectrum conversion, zero-fill past ends */
337 > extern void     convertscolor(SCOLOR dst, int dnc, double dwl0, double dwl1,
338 >                        const COLORV src[], int snc, double swl0, double swl1);
339 >                                /* the following use avg spectral ranges */
340 >                                /* compare scolor_rgb() and scolor_cie() */
341 >                                /* also, pcolor_color() and pcolor_colr() */
342 > extern void     setscolor(SCOLOR scol, double r, double g, double b);
343 > extern void     scolor2color(COLOR col, SCOLOR scol, int ncs, float wlpt[4]);
344 > extern void     scolor2colr(COLR clr, SCOLOR scol, int ncs, float wlpt[4]);
345 > extern void     scolor2scolr(SCOLR sclr, SCOLOR scol, int ncs);
346 > extern void     colr_color(COLOR col, COLR clr);
347 > extern void     scolr2scolor(SCOLOR scol, SCOLR sclr, int ncs);
348 > extern void     scolr2color(COLOR col, SCOLR sclr, int ncs, float wlpt[4]);
349 > extern void     colr_scolor(SCOLOR scol, COLR clr);
350 > extern void     setcolr(COLR clr, double r, double g, double b);
351 > extern void     setscolr(SCOLR sclr, double r, double g, double b);
352 > extern double   scolor_mean(SCOLOR scol);
353 > extern double   sintens(SCOLOR scol);
354 > extern int      bigdiff(COLOR c1, COLOR c2, double md);
355 > extern int      sbigsdiff(SCOLOR sc1, SCOLOR sc2, double md);
356 >                                        /* defined in spec_rgb.c */
357 > extern void     spec_cie(COLOR col, int s, int e);
358 > extern void     spec_rgb(COLOR col, int s, int e);
359 > extern void     cie_rgb(COLOR rgb, COLOR xyz);
360 > extern int      clipgamut(COLOR col, double brt, int gamut,
361 >                                COLOR lower, COLOR upper);
362 > extern void     colortrans(COLOR c2, COLORMAT mat, COLOR c1);
363 > extern void     multcolormat(COLORMAT m3, COLORMAT m2,
364 >                                        COLORMAT m1);
365 > extern int      colorprimsOK(RGBPRIMS pr);
366 > extern int      compxyz2rgbmat(COLORMAT mat, RGBPRIMS pr);
367 > extern int      comprgb2xyzmat(COLORMAT mat, RGBPRIMS pr);
368 > extern int      comprgb2rgbmat(COLORMAT mat, RGBPRIMS pr1, RGBPRIMS pr2);
369 > extern int      compxyzWBmat(COLORMAT mat, float wht1[2],
370 >                                float wht2[2]);
371 > extern int      compxyz2rgbWBmat(COLORMAT mat, RGBPRIMS pr);
372 > extern int      comprgb2xyzWBmat(COLORMAT mat, RGBPRIMS pr);
373 > extern int      comprgb2rgbWBmat(COLORMAT mat, RGBPRIMS pr1, RGBPRIMS pr2);
374 >                                        /* most accurate spectral->tristim */
375 > extern void     scolor2cie(COLOR col, SCOLOR scol, int ncs, float wlpt[4]);
376 > extern void     scolor2rgb(COLOR col, SCOLOR scol, int ncs, float wlpt[4]);
377 > extern double   scolor_photopic(SCOLOR scol);
378 > extern double   scolor_scotopic(SCOLOR scol);
379 > extern double   scolor_melanopic(SCOLOR scol);
380 >                                        /* defined in colrops.c */
381 > extern int      setcolrcor(double (*f)(double, double), double a2);
382 > extern int      setcolrinv(double (*f)(double, double), double a2);
383 > extern int      setcolrgam(double g);
384 > extern int      colrs_gambs(COLR *scan, int len);
385 > extern int      gambs_colrs(COLR *scan, int len);
386 > extern void     shiftcolrs(COLR *scan, int len, int adjust);
387 > extern void     normcolrs(COLR *scan, int len, int adjust);
388 >
389 > #ifdef __cplusplus
390 > }
391   #endif
392 + #endif /* _RAD_COLOR_H_ */
393 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines