Changeset 1407 for trunk/psLib/src/imageops/psImageStats.h
- Timestamp:
- Aug 6, 2004, 2:06:06 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageStats.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageStats.h
r1374 r1407 1 1 2 /** @file psImageStats.h 2 3 * \brief Routines for calculating statistics on images. … … 9 10 * @author George Gusciora, MHPCC 10 11 * 11 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08-0 4 00:55:17$12 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-08-07 00:06:06 $ 13 14 * 14 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 16 */ 16 17 #if !defined(PS_IMAGE_STATS_H) 17 # define PS_IMAGE_STATS_H18 # define PS_IMAGE_STATS_H 18 19 19 20 #include "psType.h" 21 #include "psVector.h" 22 #include "psImage.h" 23 #include "psStats.h" 24 #include "psFunctions.h" 20 # include "psType.h" 21 # include "psVector.h" 22 # include "psImage.h" 23 # include "psStats.h" 24 # include "psFunctions.h" 25 25 26 26 /// @addtogroup ImageStats … … 28 28 29 29 /// This routine must determine the various statistics for the image. 30 psStats *psImageStats( psStats *stats, ///< defines statistics to be calculated 31 psImage *in, ///< image (or subimage) to calculate stats 32 psImage *mask, ///< mask data for image (NULL ok) 33 int maskVal ); ///< mask Mask for mask 34 35 36 psHistogram *psImageHistogram( psHistogram *out, ///< input histogram description & target 37 psImage *in, ///< Image data to be histogramed. 38 psImage *mask, ///< mask data for image (NULL ok) 39 unsigned int maskVal ); ///< mask Mask for mask 40 30 psStats *psImageStats(psStats * stats, // /< defines statistics to be calculated 31 psImage * in, // /< image (or subimage) to calculate stats 32 psImage * mask, // /< mask data for image (NULL ok) 33 int maskVal); // /< mask Mask for mask 34 35 psHistogram *psImageHistogram(psHistogram * out, // /< input histogram description & target 36 psImage * in, // /< Image data to be histogramed. 37 psImage * mask, // /< mask data for image (NULL ok) 38 unsigned int maskVal); // /< mask Mask for mask 39 41 40 /// Fit a 2-D polynomial surface to an image. 42 psPolynomial2D * 43 psImageFitPolynomial( const psImage *input, ///< image to fit 44 psPolynomial2D *coeffs ///< coefficient structure carries indesired terms & target45 );46 41 psPolynomial2D *psImageFitPolynomial(const psImage * input, // /< image to fit 42 psPolynomial2D * coeffs // /< coefficient structure carries in 43 // desired terms & target 44 ); 45 47 46 /// Evaluate a 2-D polynomial surface to image pixels. 48 int 49 psImageEvalPolynomial( const psImage *input, ///< image to fit 50 const psPolynomial2D *coeffs ///< coefficient structure carries in desired terms 51 ); 52 47 int psImageEvalPolynomial(const psImage * input, // /< image to fit 48 const psPolynomial2D * coeffs // /< coefficient structure carries in desired terms 49 ); 50 53 51 /// @} 54 52
Note:
See TracChangeset
for help on using the changeset viewer.
