IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 14, 2004, 1:22:49 PM (22 years ago)
Author:
desonia
Message:

Added psImageRebin functionality.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psType.h

    r974 r1216  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-06-10 01:58:06 $
     12 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-07-14 23:22:49 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2121#include <complex.h>
    2222#include <stdint.h>
     23#include <float.h>
    2324
    2425/// @addtogroup DataContainer
     
    6970#define PS_TYPE_MASK PS_TYPE_U8         ///< the psElemType to use for mask image
    7071typedef psU8 psMaskType;                ///< the C datatype for a mask image
     72
     73#define PS_MIN_S8        INT8_MIN
     74#define PS_MIN_S16       INT16_MIN
     75#define PS_MIN_S32       INT32_MIN
     76#define PS_MIN_S64       INT64_MIN
     77#define PS_MIN_U8        0
     78#define PS_MIN_U16       0
     79#define PS_MIN_U32       0
     80#define PS_MIN_U64       0
     81#define PS_MIN_F32       FLT_MIN
     82#define PS_MIN_F64       DBL_MIN
     83#define PS_MIN_C32       FLT_MIN
     84#define PS_MIN_C64       DBL_MIN
     85
     86#define PS_MAX_S8        INT8_MAX
     87#define PS_MAX_S16       INT16_MAX
     88#define PS_MAX_S32       INT32_MAX
     89#define PS_MAX_S64       INT64_MAX
     90#define PS_MAX_U8        UINT8_MAX
     91#define PS_MAX_U16       UINT16_MAX
     92#define PS_MAX_U32       UINT32_MAX
     93#define PS_MAX_U64       UINT64_MAX
     94#define PS_MAX_F32       FLT_MAX
     95#define PS_MAX_F64       DBL_MAX
     96#define PS_MAX_C32       FLT_MAX
     97#define PS_MAX_C64       DBL_MAX
    7198
    7299/// Macro to get the bad pixel reason code (stored as part of mask value)
Note: See TracChangeset for help on using the changeset viewer.