ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/pf2.c
Revision: 2.4
Committed: Wed Nov 9 15:04:52 1994 UTC (29 years, 5 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.3: +15 -10 lines
Log Message:
made pfilt more intelligent about averaging out zero pixels

File Contents

# Content
1 /* Copyright (c) 1994 Regents of the University of California */
2
3 #ifndef lint
4 static char SCCSid[] = "$SunId$ LBL";
5 #endif
6
7 /*
8 * pf2.c - routines used by pfilt.
9 */
10
11 #include <stdio.h>
12
13 #include <math.h>
14
15 #include "random.h"
16
17 #include "color.h"
18
19 #define PI 3.14159265359
20
21 #define FTINY (1e-6)
22
23 extern int nrows, ncols; /* number of rows and columns for output */
24
25 extern int xres, yres; /* x and y resolution */
26
27 extern int avghot; /* true means average in avgbrt spots */
28
29 extern double hotlvl; /* brightness considered "hot" */
30
31 extern int npts; /* # of points for stars */
32
33 extern double spread; /* spread for star points */
34
35 extern char *progname;
36
37 extern COLOR exposure; /* exposure for frame */
38
39 #define AVGLVL 0.5 /* target mean brightness */
40
41 double avgbrt; /* average picture brightness */
42 long npix; /* # pixels in average */
43
44 typedef struct hotpix { /* structure for avgbrt pixels */
45 struct hotpix *next; /* next in list */
46 COLOR val; /* pixel color */
47 short x, y; /* pixel position */
48 float slope; /* random slope for diffraction */
49 } HOTPIX;
50
51 HOTPIX *head; /* head of avgbrt pixel list */
52
53 double sprdfact; /* computed spread factor */
54
55
56 pass1init() /* prepare for first pass */
57 {
58 avgbrt = 0.0;
59 npix = 0;
60 head = NULL;
61 }
62
63
64 pass1default() /* for single pass */
65 {
66 avgbrt = AVGLVL;
67 npix = 1;
68 head = NULL;
69 }
70
71
72 pass1scan(scan, y) /* process first pass scanline */
73 register COLOR *scan;
74 int y;
75 {
76 extern char *malloc();
77 double cbrt;
78 register int x;
79 register HOTPIX *hp;
80
81 for (x = 0; x < xres; x++) {
82
83 cbrt = bright(scan[x]);
84
85 if (cbrt <= 0)
86 continue;
87
88 if (avghot || cbrt < hotlvl) {
89 avgbrt += cbrt;
90 npix++;
91 }
92 if (npts && cbrt >= hotlvl) {
93 hp = (HOTPIX *)malloc(sizeof(HOTPIX));
94 if (hp == NULL) {
95 fprintf(stderr, "%s: out of memory\n",
96 progname);
97 quit(1);
98 }
99 copycolor(hp->val, scan[x]);
100 hp->x = x;
101 hp->y = y;
102 hp->slope = tan(PI*(0.5-(random()%npts+0.5)/npts));
103 hp->next = head;
104 head = hp;
105 }
106 }
107 }
108
109
110 pass2init() /* prepare for final pass */
111 {
112 if (!npix) {
113 fprintf(stderr, "%s: picture too dark or too bright\n",
114 progname);
115 quit(1);
116 }
117 avgbrt /= (double)npix;
118
119 scalecolor(exposure, AVGLVL/avgbrt);
120
121 sprdfact = spread / (hotlvl * bright(exposure))
122 * ((double)xres*xres + (double)yres*yres) / 4.0;
123 }
124
125
126 pass2scan(scan, y) /* process final pass scanline */
127 register COLOR *scan;
128 int y;
129 {
130 int xmin, xmax;
131 register int x;
132 register HOTPIX *hp;
133
134 for (hp = head; hp != NULL; hp = hp->next) {
135 if (hp->slope > FTINY) {
136 xmin = (y - hp->y - 0.5)/hp->slope + hp->x;
137 xmax = (y - hp->y + 0.5)/hp->slope + hp->x;
138 } else if (hp->slope < -FTINY) {
139 xmin = (y - hp->y + 0.5)/hp->slope + hp->x;
140 xmax = (y - hp->y - 0.5)/hp->slope + hp->x;
141 } else if (y == hp->y) {
142 xmin = 0;
143 xmax = xres-1;
144 } else {
145 xmin = 1;
146 xmax = 0;
147 }
148 if (xmin < 0)
149 xmin = 0;
150 if (xmax >= xres)
151 xmax = xres-1;
152 for (x = xmin; x <= xmax; x++)
153 starpoint(scan[x], x, y, hp);
154 }
155 for (x = 0; x < xres; x++)
156 multcolor(scan[x], exposure);
157 }
158
159
160 starpoint(fcol, x, y, hp) /* pixel is on the star's point */
161 COLOR fcol;
162 int x, y;
163 register HOTPIX *hp;
164 {
165 COLOR ctmp;
166 double d2;
167
168 d2 = (double)(x - hp->x)*(x - hp->x) + (double)(y - hp->y)*(y - hp->y);
169 if (d2 > sprdfact) {
170 d2 = sprdfact / d2;
171 if (d2 < FTINY)
172 return;
173 copycolor(ctmp, hp->val);
174 scalecolor(ctmp, d2);
175 addcolor(fcol, ctmp);
176 } else if (d2 > FTINY) {
177 addcolor(fcol, hp->val);
178 }
179 }