IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 31, 2004, 5:01:04 PM (22 years ago)
Author:
Paul Price
Message:

Standardised on /< as Doxygen comment for variable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psImage.h

    r292 r344  
    2222        psF32 **rows_f32;               ///< pointers to psF32 data
    2323        psF64 **rows_f64;               ///< pointers to psF64 data
    24         psComplex **rows_complex;       //!< pointers to psComplex data
     24        psComplex **rows_complex;       ///< pointers to psComplex data
    2525    } rows;
    2626    psImage *parent;                    ///< parent, if a subimage
     
    4545/// Create a subimage of the specified area.
    4646psImage *
    47 psImageSubset(psImage *out,             //!< Subimage to return, or NULL
     47psImageSubset(psImage *out,             ///< Subimage to return, or NULL
    4848              const psImage *image,     ///< parent image
    4949              int nx,                   ///< subimage width (<= image.nx - x0) 
     
    6060/** Destroy the pixels of the specified image */
    6161psImage *
    62 psImageFreePixels(psImage *restrict image //!< Image whose pixels are to be freed
     62psImageFreePixels(psImage *restrict image ///< Image whose pixels are to be freed
    6363    );
    6464
     
    7878/// Extract pixels from rectlinear region to a vector.
    7979psFloatArray *
    80 psImageSlice(psFloatArray *out,         //!< Vector to output, or NULL
     80psImageSlice(psFloatArray *out,         ///< Vector to output, or NULL
    8181             const psImage *input,      ///< extract slice from this image
    8282             int x,                     ///< starting x coord of region to slice
     
    9090/// Extract pixels along a line to a vector.
    9191psFloatArray *
    92 psImageCut(psFloatArray *out,           //!< Vector to output, or NULL
     92psImageCut(psFloatArray *out,           ///< Vector to output, or NULL
    9393           const psImage *input,        ///< extract cut from this image
    9494           float xs,                    ///< starting x coord of cut
     
    102102/// Extract radial annulii data to a vector.
    103103psFloatArray *
    104 psImageRadialCut(psFloatArray *out,     //!< Vector to output, or NULL
     104psImageRadialCut(psFloatArray *out,     ///< Vector to output, or NULL
    105105                 const psImage *input,  ///< extract profile from this image
    106106                 float x,               ///< center x coord of annulii
     
    115115/// Extract a 2-d contour from an image at the given threshold.
    116116psFloatArray *
    117 psImageContour(psFloatArray *out,       //!< Vector to output, or NULL
     117psImageContour(psFloatArray *out,       ///< Vector to output, or NULL
    118118               const psImage *input,    ///< create contour for this image
    119119               float threshold, ///< contour image at this threshold
     
    125125/// Rebin image to new scale.
    126126psImage *
    127 psImageRebin(psImage *out,              //!< Image to output, or NULL
     127psImageRebin(psImage *out,              ///< Image to output, or NULL
    128128             const psImage *input,      ///< rebin this image
    129129             float scale,               ///< rebinning scale: doutput = scale*dinput
     
    133133/// Rotate image by given angle.
    134134psImage *
    135 psImageRotate(psImage *out,             //!< Image to output, or NULL
     135psImageRotate(psImage *out,             ///< Image to output, or NULL
    136136              const psImage *input,     ///< rotate this image
    137137              float angle               ///< rotate by this amount anti-clockwise (degrees)
     
    141141/// Drop edge pixels, and set newly exposed pixels to 'exposed'.
    142142psImage *
    143 psImageShift(psImage *out,              //!< Image to output, or NULL
     143psImageShift(psImage *out,              ///< Image to output, or NULL
    144144             const psImage *input,      ///< shift this image
    145145             float dx,                  ///< shift by this amount in x
     
    151151/// Edge pixels wrap to the other side (no values are lost).
    152152psImage *
    153 psImageRoll(psImage *out,               //!< Image to output, or NULL
     153psImageRoll(psImage *out,               ///< Image to output, or NULL
    154154            const psImage *input,       ///< roll this image
    155155            int dx,                     ///< roll this amount in x
     
    249249/// Perform an FFT on the image.  The output image type is psComplex.
    250250psImage *
    251 psImageFFT(psImage *output,             //!< Output image
     251psImageFFT(psImage *output,             ///< Output image
    252252           const psImage *input,        ///< image to FFT
    253253           int direction                ///< FFT direction
Note: See TracChangeset for help on using the changeset viewer.