IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1323


Ignore:
Timestamp:
Jul 28, 2004, 4:01:10 PM (22 years ago)
Author:
evanalst
Message:

Function psHistogramVector name change to psVectorHistogram per SDR-02.

Location:
trunk/psLib
Files:
5 edited

Legend:

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

    r1261 r1323  
    8080                              psImage *in,
    8181                              psImage *mask,
    82                               int maskVal)
     82                              unsigned int maskVal)
    8383{
    8484    psVector *junkData=NULL;
     
    113113    }
    114114
    115     out = psHistogramVector(out, junkData, junkMask, maskVal);
     115    out = psVectorHistogram(out, junkData, junkMask, maskVal);
    116116
    117117    psFree(junkMask);
  • trunk/psLib/src/image/psImageStats.h

    r1292 r1323  
    1010 *  @author George Gusciora, MHPCC
    1111 *
    12  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-24 02:00:21 $
     12 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-29 02:00:27 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3535                              psImage *in,       ///< Image data to be histogramed.
    3636                              psImage *mask,     ///< mask data for image (NULL ok)
    37                               int maskVal);      ///< mask Mask for mask
     37                              unsigned int maskVal);  ///< mask Mask for mask
    3838
    3939/// Fit a 2-D polynomial surface to an image.
  • trunk/psLib/src/imageops/psImageStats.c

    r1261 r1323  
    8080                              psImage *in,
    8181                              psImage *mask,
    82                               int maskVal)
     82                              unsigned int maskVal)
    8383{
    8484    psVector *junkData=NULL;
     
    113113    }
    114114
    115     out = psHistogramVector(out, junkData, junkMask, maskVal);
     115    out = psVectorHistogram(out, junkData, junkMask, maskVal);
    116116
    117117    psFree(junkMask);
  • trunk/psLib/src/imageops/psImageStats.h

    r1292 r1323  
    1010 *  @author George Gusciora, MHPCC
    1111 *
    12  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-07-24 02:00:21 $
     12 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-29 02:00:27 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3535                              psImage *in,       ///< Image data to be histogramed.
    3636                              psImage *mask,     ///< mask data for image (NULL ok)
    37                               int maskVal);      ///< mask Mask for mask
     37                              unsigned int maskVal);  ///< mask Mask for mask
    3838
    3939/// Fit a 2-D polynomial surface to an image.
  • trunk/psLib/test/dataManip/verified/tst_psHist02.stdout

    r1321 r1323  
    139139/***************************** TESTPOINT ******************************************\
    140140*             TestFile: tst_psHist02.c                                             *
    141 *            TestPoint: psStats functions{Calling psHistogramVector() with various NULL inputs.} *
     141*            TestPoint: psStats functions{Calling psVectorHistogram() with various NULL inputs.} *
    142142*             TestType: Positive                                                   *
    143143\**********************************************************************************/
    144144
    145145
    146 ---> TESTPOINT PASSED (psStats functions{Calling psHistogramVector() with various NULL inputs.} | tst_psHist02.c)
     146---> TESTPOINT PASSED (psStats functions{Calling psVectorHistogram() with various NULL inputs.} | tst_psHist02.c)
    147147
    148148/***************************** TESTPOINT ******************************************\
Note: See TracChangeset for help on using the changeset viewer.