IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 3:15:47 PM (22 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

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

    r2204 r2206  
    99*  @author GLG, MHPCC
    1010*
    11 *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-10-27 00:57:31 $
     11*  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-10-27 01:15:47 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    101101    NOTE: We assume that the psHistogram structure out has already been
    102102    allocated and initialized.
    103     NOTE: verify that image/mask have the, correct types and sizes.
     103    NOTE: verify that image/mask have the correct types and sizes.
    104104 *****************************************************************************/
    105105psHistogram* psImageHistogram(psHistogram* out,
     
    112112
    113113    // NOTE: Verify this action.
    114     PS_CHECK_NULL_PTR_RETURN_NULL(out);
    115     PS_CHECK_NULL_PTR_RETURN_NULL(in);
     114    PS_CHECK_NULL_PTR(out, NULL);
     115    PS_CHECK_NULL_PTR(in, NULL);
    116116
    117117    junkData = psAlloc(sizeof(psVector));
     
    171171p_psCalcScaleFactorsEval(n): The Chebyshev polynomials are defined over the
    172172interval [-1.0 : 1.0].  Images typically have sizes of 512x512 or more.  In
    173 order to use Chebyshev polynomials, we must scales the coordinates from
     173order to use Chebyshev polynomials, we must scale the coordinates from
    1741740:512 to -1:1.  This routine takes as input an integer N and produces as
    175175output a vector of evenly spaced floating point values between -1.0:1.0.
Note: See TracChangeset for help on using the changeset viewer.