IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 22, 2005, 12:36:33 PM (21 years ago)
Author:
Paul Price
Message:

psPixelCoord now contains floats. Updated psImageSlice to use this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/psLibSDRS.tex

    r4596 r4598  
    1 %%% $Id: psLibSDRS.tex,v 1.320 2005-07-22 22:13:36 price Exp $
     1%%% $Id: psLibSDRS.tex,v 1.321 2005-07-22 22:36:33 price Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    21112111\begin{datatype}
    21122112typedef struct {
    2113     int x;                      // x coordinate
    2114     int y;                      // y coordinate
     2113    float x;                    // x coordinate
     2114    float y;                    // y coordinate
    21152115} psPixelCoord;
    21162116
     
    43014301    psPolynomialType type;              ///< Polynomial type
    43024302    unsigned int nX, nY;                ///< Number of terms in x and y
    4303     psF64 *coeff;                       ///< Coefficients
    4304     psF64 *coeffErr;                    ///< Error in coefficients
     4303    psF64 **coeff;                      ///< Coefficients
     4304    psF64 **coeffErr;                   ///< Error in coefficients
    43054305    char **mask;                        ///< Coefficients mask
    43064306} psPolynomial2D;
     
    48334833\begin{prototype}
    48344834psVector *psImageSlice(psVector *out,
    4835                        psVector *coords,
     4835                       psPixels *coords,
    48364836                       const psImage *input,
    48374837                       const psImage *mask,
     
    48614861are excluded from operations.  If \code{coords} is not \code{NULL},
    48624862the calculated coordinates along the slice are returned in this
    4863 vector.  Only one of the statistics choices may be specified,
     4863array of pixels.  Only one of the statistics choices may be specified,
    48644864otherwise the function must return an error.  This function must be
    48654865defined for the following types: \code{psS8}, \code{psU16},
Note: See TracChangeset for help on using the changeset viewer.