IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4934


Ignore:
Timestamp:
Aug 31, 2005, 11:58:22 AM (21 years ago)
Author:
drobbin
Message:

complex double switched back to complex. RegionForImage test fixed.

Location:
trunk/psLib/src/imageops
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageGeomManip.c

    r4920 r4934  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-08-31 02:07:11 $
     12 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-08-31 21:58:22 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    305305                       const psImage* input,
    306306                       float angle,
    307                        complex double exposed,
     307                       complex exposed,
    308308                       psImageInterpolateMode mode)
    309309{
     
    597597                      float dx,
    598598                      float dy,
    599                       complex double exposed,
     599                      complex exposed,
    600600                      psImageInterpolateMode mode)
    601601{
  • trunk/psLib/src/imageops/psImageGeomManip.h

    r4920 r4934  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-08-31 02:07:11 $
     10 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-08-31 21:58:22 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7777    const psImage* input,              ///< input image
    7878    float angle,                       ///< the rotation angle in radians.
    79     complex double exposed,            ///< the output image pixel values for non-imagery areas
     79    complex exposed,            ///< the output image pixel values for non-imagery areas
    8080    psImageInterpolateMode mode        ///< the interpolation mode used
    8181);
     
    9797    float dx,                          ///< the shift in x direction.
    9898    float dy,                          ///< the shift in y direction.
    99     complex double exposed,            ///< the output image pixel values for non-imagery areas
     99    complex exposed,            ///< the output image pixel values for non-imagery areas
    100100    psImageInterpolateMode mode        ///< the interpolation mode to use
    101101);
     
    151151    psRegion region,                   ///< the size of the transformed image
    152152    const psPixels* pixels,            /**< if not NULL, consists of psPixelCoords and specifies which pixels in
    153                                                                      *  output image shall be transformed; otherwise, entire image generated*/
     153                                                                         *  output image shall be transformed; otherwise, entire image generated*/
    154154    psImageInterpolateMode mode,       ///< the interpolation scheme to be used
    155155    double exposedValue                   ///< Exposed value to which non-corresponding pixels are set
  • trunk/psLib/src/imageops/psImagePixelManip.c

    r4920 r4934  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-08-31 02:07:11 $
     12 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-08-31 21:58:22 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    311311
    312312int psImageClipComplexRegion(psImage* input,
    313                              complex double min,
    314                              complex double vmin,
    315                              complex double max,
    316                              complex double vmax)
     313                             complex min,
     314                             complex vmin,
     315                             complex max,
     316                             complex vmax)
    317317{
    318318    psS32 numClipped = 0;
  • trunk/psLib/src/imageops/psImagePixelManip.h

    r4920 r4934  
    88 *  @author Robert DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-08-31 02:07:11 $
     10 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-08-31 21:58:22 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151int psImageClipComplexRegion(
    5252    psImage* input,                    ///< the image to clip
    53     complex double min,                       ///< the minimum image value allowed
    54     complex double vmin,                      ///< the value pixels < min are set to
    55     complex double max,                       ///< the maximum image value allowed
    56     complex double vmax                       ///< the value pixels > max are set to
     53    complex min,                       ///< the minimum image value allowed
     54    complex vmin,                      ///< the value pixels < min are set to
     55    complex max,                       ///< the maximum image value allowed
     56    complex vmax                       ///< the value pixels > max are set to
    5757);
    5858
Note: See TracChangeset for help on using the changeset viewer.