IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 15, 2005, 1:59:06 PM (21 years ago)
Author:
desonia
Message:

* empty log message *

File:
1 edited

Legend:

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

    r3089 r3231  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-01-25 02:45:43 $
     7 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-02-15 23:59:05 $
    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                 if (image->data.F32[row][col] > threashold) {
     116                if (image->data.F32[row][col] > threshold) {
    117117                    // Add peak at location (row, col)
    118118                }
     
    124124                    (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
    125125                    (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
    126                 if (image->data.F32[row][col] > threashold) {
     126                if (image->data.F32[row][col] > threshold) {
    127127                    // Add peak at location (row, col)
    128128                }
     
    133133                    (image->data.F32[row][col] > image->data.F32[row+1][col]) &&
    134134                    (image->data.F32[row][col] >= image->data.F32[row+1][col-1])) {
    135                 if (image->data.F32[row][col] > threashold) {
     135                if (image->data.F32[row][col] > threshold) {
    136136                    // Add peak at location (row, col)
    137137                }
     
    159159                    (image->data.F32[row][col] >= image->data.F32[row+1][col]) &&
    160160                    (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
    161                 if (image->data.F32[row][col] > threashold) {
     161                if (image->data.F32[row][col] > threshold) {
    162162                    // Add peak at location (row, col)
    163163                }
     
    175175                    (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) &&
    176176                    (image->data.F32[row][col] >  image->data.F32[row][col+1])) {
    177                 if (image->data.F32[row][col] > threashold) {
     177                if (image->data.F32[row][col] > threshold) {
    178178                    // Add peak at location (row, col)
    179179                }
     
    185185                    (image->data.F32[row][col] >  image->data.F32[row][col-1]) &&
    186186                    (image->data.F32[row][col] >= image->data.F32[row][col+1])) {
    187                 if (image->data.F32[row][col] > threashold) {
     187                if (image->data.F32[row][col] > threshold) {
    188188                    // Add peak at location (row, col)
    189189                }
     
    194194                    (image->data.F32[row][col] >  image->data.F32[row-1][col]) &&
    195195                    (image->data.F32[row][col] >  image->data.F32[row][col-1])) {
    196                 if (image->data.F32[row][col] > threashold) {
     196                if (image->data.F32[row][col] > threshold) {
    197197                    // Add peak at location (row, col)
    198198                }
Note: See TracChangeset for help on using the changeset viewer.