Changeset 3089
- Timestamp:
- Jan 24, 2005, 4:45:43 PM (21 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 2 edited
-
pmObjects.c (modified) (10 diffs)
-
pmObjects.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/pmObjects.c
r3088 r3089 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-01-25 02:4 2:27$7 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-01-25 02:45:43 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 114 114 (image->data.F32[row][col] > image->data.F32[row+1][col]) && 115 115 (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 } 117 119 } 118 120 } else if (col < (image->numCols - 1)) { … … 122 124 (image->data.F32[row][col] > image->data.F32[row+1][col]) && 123 125 (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 } 125 129 } 126 130 … … 129 133 (image->data.F32[row][col] > image->data.F32[row+1][col]) && 130 134 (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 } 132 138 } 133 139 … … 153 159 (image->data.F32[row][col] >= image->data.F32[row+1][col]) && 154 160 (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 } 156 164 } 157 165 } … … 167 175 (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) && 168 176 (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 } 170 180 } 171 181 } else if (col < (image->numCols - 1)) { … … 175 185 (image->data.F32[row][col] > image->data.F32[row][col-1]) && 176 186 (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 } 178 190 } 179 191 … … 182 194 (image->data.F32[row][col] > image->data.F32[row-1][col]) && 183 195 (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 } 185 199 } 186 200 } else { … … 226 240 227 241 /****************************************************************************** 228 pmSourceRou chClass(source, saturate, SNlim, valid): make a guessat the source242 pmSourceRoughClass(source, saturate, SNlim, valid): make a guessat the source 229 243 classification. 230 244 *****************************************************************************/ 231 psSource *pmSourceRou chClass(psSource *source,245 psSource *pmSourceRoughClass(psSource *source, 232 246 psF32 saturate, 233 247 float SNlim, … … 522 536 return(0.0); 523 537 } 524 525 526 -
trunk/psModules/src/pmObjects.h
r3078 r3089 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-01-2 4 22:57:52$7 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-01-25 02:45:43 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 141 141 142 142 /****************************************************************************** 143 pmSourceRou chClass(source, saturate, SNlim, valid): make a guessat the source143 pmSourceRoughClass(source, saturate, SNlim, valid): make a guessat the source 144 144 classification. 145 145 *****************************************************************************/ 146 psSource *pmSourceRou chClass(psSource *source,146 psSource *pmSourceRoughClass(psSource *source, 147 147 psF32 saturate, 148 148 float SNlim,
Note:
See TracChangeset
for help on using the changeset viewer.
