Changeset 215 for trunk/archive/pslib/include/psImages.h
- Timestamp:
- Mar 11, 2004, 10:34:23 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psImages.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psImages.h
r206 r215 74 74 int ny, ///< width of region in y 75 75 int direction, ///< direction of vector along slice 76 psStat Mode statmode ///< statistic applied to pixel group to find output value76 psStats *stats ///< defines statistics used to find output values 77 77 ); 78 78 … … 85 85 float ye, ///< ending y coord of cut 86 86 float dw, ///< width of cut 87 psStat Mode statmode ///< statistic applied to pixel group to find output value87 psStats *stats ///< defines statistics used to find output values 88 88 ); 89 89 … … 95 95 float radius, ///< outer radius of annulii 96 96 float dr, ///< radial step size of annulii 97 psStat Mode statmode ///< statistic applied to pixel group to find output value97 psStats *stats ///< defines statistics used to find output values 98 98 ); 99 99 … … 110 110 psImageRebin (psImage *input, ///< rebin this image 111 111 float scale, ///< rebinning scale: doutput = scale*dinput 112 psStat Mode statmode ///< statistic used in performing interpolation / summing112 psStats *stats ///< defines statistics used to find output values 113 113 ); 114 114 … … 137 137 138 138 /// Determine statistics for image (or subimage). 139 /// Should we have one function for all stats, or multiple functions? 140 /// How to represent the output values? 141 void 142 psImageGetStats (psImage *input, psStatMode statmode); 139 psStats * 140 psImageGetStats (psImage *input, ///< image (or subimage) to calculate stats 141 psStats *stats); ///< defines statistics to be calculated 143 142 144 143 /// Construct a histogram from an image (or subimage). … … 149 148 150 149 /// Fit a 2-D polynomial surface to an image. 151 ps FloatArrayArray*150 psPolynomial2D * 152 151 psImageFitPolynomial (psImage *input, ///< image to fit 153 int xorder, ///< order of polynomial in x-dir 154 int yorder ///< order of polynomial in y-dir 152 psPolynomial2D *coeffs ///< coefficient structure carries in desired terms 153 ); 154 155 /// Evaluate a 2-D polynomial surface to image pixels. 156 int 157 psImageEvalPolynomial (psImage *input, ///< image to fit 158 psPolynomial2D *coeffs ///< coefficient structure carries in desired terms 155 159 ); 156 160
Note:
See TracChangeset
for help on using the changeset viewer.
