IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3089


Ignore:
Timestamp:
Jan 24, 2005, 4:45:43 PM (21 years ago)
Author:
gusciora
Message:

...

Location:
trunk/psModules/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/pmObjects.c

    r3088 r3089  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-01-25 02:42:27 $
     7 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-01-25 02:45:43 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    114114                    (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
    115115                    (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
    116                 // Add peak at location (row, col)
     116                if (image->data.F32[row][col] > threashold) {
     117                    // Add peak at location (row, col)
     118                }
    117119            }
    118120        } else if (col < (image->numCols - 1)) {
     
    122124                    (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
    123125                    (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
    124                 // Add peak at location (row, col)
     126                if (image->data.F32[row][col] > threashold) {
     127                    // Add peak at location (row, col)
     128                }
    125129            }
    126130
     
    129133                    (image->data.F32[row][col] > image->data.F32[row+1][col]) &&
    130134                    (image->data.F32[row][col] >= image->data.F32[row+1][col-1])) {
    131                 // Add peak at location (row, col)
     135                if (image->data.F32[row][col] > threashold) {
     136                    // Add peak at location (row, col)
     137                }
    132138            }
    133139
     
    153159                    (image->data.F32[row][col] >= image->data.F32[row+1][col]) &&
    154160                    (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
    155                 // Add peak at location (row, col)
     161                if (image->data.F32[row][col] > threashold) {
     162                    // Add peak at location (row, col)
     163                }
    156164            }
    157165        }
     
    167175                    (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) &&
    168176                    (image->data.F32[row][col] >  image->data.F32[row][col+1])) {
    169                 // Add peak at location (row, col)
     177                if (image->data.F32[row][col] > threashold) {
     178                    // Add peak at location (row, col)
     179                }
    170180            }
    171181        } else if (col < (image->numCols - 1)) {
     
    175185                    (image->data.F32[row][col] >  image->data.F32[row][col-1]) &&
    176186                    (image->data.F32[row][col] >= image->data.F32[row][col+1])) {
    177                 // Add peak at location (row, col)
     187                if (image->data.F32[row][col] > threashold) {
     188                    // Add peak at location (row, col)
     189                }
    178190            }
    179191
     
    182194                    (image->data.F32[row][col] >  image->data.F32[row-1][col]) &&
    183195                    (image->data.F32[row][col] >  image->data.F32[row][col-1])) {
    184                 // Add peak at location (row, col)
     196                if (image->data.F32[row][col] > threashold) {
     197                    // Add peak at location (row, col)
     198                }
    185199            }
    186200        } else {
     
    226240
    227241/******************************************************************************
    228 pmSourceRouchClass(source, saturate, SNlim, valid): make a guessat the source
     242pmSourceRoughClass(source, saturate, SNlim, valid): make a guessat the source
    229243classification.
    230244 *****************************************************************************/
    231 psSource *pmSourceRouchClass(psSource *source,
     245psSource *pmSourceRoughClass(psSource *source,
    232246                             psF32 saturate,
    233247                             float SNlim,
     
    522536    return(0.0);
    523537}
    524 
    525 
    526 
  • trunk/psModules/src/pmObjects.h

    r3078 r3089  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-01-24 22:57:52 $
     7 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-01-25 02:45:43 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    141141
    142142/******************************************************************************
    143 pmSourceRouchClass(source, saturate, SNlim, valid): make a guessat the source
     143pmSourceRoughClass(source, saturate, SNlim, valid): make a guessat the source
    144144classification.
    145145 *****************************************************************************/
    146 psSource *pmSourceRouchClass(psSource *source,
     146psSource *pmSourceRoughClass(psSource *source,
    147147                             psF32 saturate,
    148148                             float SNlim,
Note: See TracChangeset for help on using the changeset viewer.