IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3093


Ignore:
Timestamp:
Jan 25, 2005, 2:04:59 PM (21 years ago)
Author:
Paul Price
Message:

Added region and nSamples to psPlaneTransformCombine and specified the
algorithm.

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

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

    r3076 r3093  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.60 2005-01-24 22:05:01 price Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.61 2005-01-26 00:04:52 price Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    444444\item Removed in \code{psListAlloc}, ``The number of iterators in the
    445445  list is initially set to zero.'' (bug 271).
    446 \end{itemize}
     446\item Added \code{region} and \code{nSamples} to
     447  \code{psPlaneTransformCombine} and specified the algorithm.
     448\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r3076 r3093  
    1 %%% $Id: psLibSDRS.tex,v 1.171 2005-01-24 22:05:06 price Exp $
     1%%% $Id: psLibSDRS.tex,v 1.172 2005-01-26 00:04:59 price Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    47694769\begin{verbatim}
    47704770psPlaneTransform *psPlaneTransformInvert(psPlaneTransform *out, const psPlaneTransform *in, psRegion *region, int nSamples);
    4771 psPlaneTransform *psPlaneTransformCombine(psPlaneTransform *out, const psPlaneTransform *trans1, const psPlaneTransform *trans2);
     4771psPlaneTransform *psPlaneTransformCombine(psPlaneTransform *out, const psPlaneTransform *trans1, const psPlaneTransform *trans2, psRegion *region, int nSamples);
    47724772bool psPlaneTranformFit(psPlaneTransform *trans, const psArray *source, const psArray *dest, int nRejIter, float sigmaClip);
    47734773\end{verbatim}
     
    47904790(\code{trans1} and \code{trans2}) and returns a single transformation
    47914791that has the effect of performing \code{trans1} followed by
    4792 \code{trans2}.  The function shall return \code{NULL} if it was unable
    4793 to generate the transformation; otherwise it shall return the
    4794 transformation.
     4792\code{trans2}.  In the event that the input transformation is linear,
     4793an exact solution may be calculated; otherwise \code{nSamples} samples
     4794in each axis, covering the region specified by \code{region} shall be
     4795used as a grid to fit the best inverse transformation.  The function
     4796shall return \code{NULL} if it was unable to generate the
     4797transformation; otherwise it shall return the transformation.
    47954798
    47964799\code{psPlaneTransformFit} takes two arrays containing matched
Note: See TracChangeset for help on using the changeset viewer.