IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 6, 2004, 2:06:06 PM (22 years ago)
Author:
desonia
Message:

another attempt to get astyle to get it right.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageStats.h

    r1374 r1407  
     1
    12/** @file psImageStats.h
    23*  \brief Routines for calculating statistics on images.
     
    910*  @author George Gusciora, MHPCC
    1011*
    11 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-08-04 00:55:17 $
     12*  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2004-08-07 00:06:06 $
    1314*
    1415*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1516*/
    1617#if !defined(PS_IMAGE_STATS_H)
    17 #define PS_IMAGE_STATS_H
     18#    define PS_IMAGE_STATS_H
    1819
    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"
    2525
    2626/// @addtogroup ImageStats
     
    2828
    2929/// 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                                
     30psStats *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
     35psHistogram *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
    4140/// 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 in desired terms & target
    45                     );
    46                    
     41psPolynomial2D *psImageFitPolynomial(const psImage * input,     // /< image to fit
     42                                     psPolynomial2D * coeffs    // /< coefficient structure carries in
     43                                     // desired terms & target
     44                                    );
     45
    4746/// 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                      
     47int psImageEvalPolynomial(const psImage * input,        // /< image to fit
     48                          const psPolynomial2D * coeffs // /< coefficient structure carries in desired terms
     49                         );
     50
    5351/// @}
    5452
Note: See TracChangeset for help on using the changeset viewer.