IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2004, 4:27:43 PM (22 years ago)
Author:
desonia
Message:

fixed various bugs found in testing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImageExtraction.h

    r1292 r1359  
    11/** @file  psImageManip.h
    2  *
    3  *  @brief Contains basic image extraction operations, as specified in the
    4  *         PSLIB SDRS sections "Image Pixel Extractions" and "Image Structure
    5  *         Manipulation".
    6  *
    7  *  @ingroup Image
    8  *
    9  *  @author Robert DeSonia, MHPCC
    10  *
    11  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-07-24 02:00:21 $
    13  *
    14  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    15  */
     2*
     3*  @brief Contains basic image extraction operations, as specified in the
     4*         PSLIB SDRS sections "Image Pixel Extractions" and "Image Structure
     5*         Manipulation".
     6*
     7*  @ingroup Image
     8*
     9*  @author Robert DeSonia, MHPCC
     10*
     11*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-07-31 02:27:43 $
     13*
     14*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     15*/
    1616
    1717#ifndef PSIMAGEEXTRACTION_H
     
    4141*/
    4242psImage *psImageSubset(
    43     psImage *out,                       ///< Subimage to return, or NULL.
    44     psImage *image,                     ///< Parent image.
    45     unsigned int numCols,               ///< Subimage width (<= image.nCols - col0).
    46     unsigned int numRows,               ///< Subimage height (<= image.nRows - row0).
    47     unsigned int col0,                  ///< Subimage col-offset (0 <= col0 < nCol).
     43    psImage *out,                        ///< Subimage to return, or NULL.
     44    psImage *image,                      ///< Parent image.
     45    unsigned int numCols,                ///< Subimage width (<= image.nCols - col0).
     46    unsigned int numRows,                ///< Subimage height (<= image.nRows - row0).
     47    unsigned int col0,                   ///< Subimage col-offset (0 <= col0 < nCol).
    4848    unsigned int row0                   ///< Subimage row-offset (0 <= row0 < nCol).
    4949);
     
    6868psVector* psImageSlice(
    6969    psVector* out,
    70     const psImage* input,
     70    const psImage* restrict input,
    7171    const psImage* restrict mask,
    7272    unsigned int maskVal,
Note: See TracChangeset for help on using the changeset viewer.