Changeset 3231 for trunk/psModules/src/pmObjects.c
- Timestamp:
- Feb 15, 2005, 1:59:06 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/pmObjects.c (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/pmObjects.c
r3089 r3231 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-0 1-25 02:45:43$7 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-02-15 23:59:05 $ 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 if (image->data.F32[row][col] > thre ashold) {116 if (image->data.F32[row][col] > threshold) { 117 117 // Add peak at location (row, col) 118 118 } … … 124 124 (image->data.F32[row][col] > image->data.F32[row+1][col]) && 125 125 (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) { 126 if (image->data.F32[row][col] > thre ashold) {126 if (image->data.F32[row][col] > threshold) { 127 127 // Add peak at location (row, col) 128 128 } … … 133 133 (image->data.F32[row][col] > image->data.F32[row+1][col]) && 134 134 (image->data.F32[row][col] >= image->data.F32[row+1][col-1])) { 135 if (image->data.F32[row][col] > thre ashold) {135 if (image->data.F32[row][col] > threshold) { 136 136 // Add peak at location (row, col) 137 137 } … … 159 159 (image->data.F32[row][col] >= image->data.F32[row+1][col]) && 160 160 (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) { 161 if (image->data.F32[row][col] > thre ashold) {161 if (image->data.F32[row][col] > threshold) { 162 162 // Add peak at location (row, col) 163 163 } … … 175 175 (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) && 176 176 (image->data.F32[row][col] > image->data.F32[row][col+1])) { 177 if (image->data.F32[row][col] > thre ashold) {177 if (image->data.F32[row][col] > threshold) { 178 178 // Add peak at location (row, col) 179 179 } … … 185 185 (image->data.F32[row][col] > image->data.F32[row][col-1]) && 186 186 (image->data.F32[row][col] >= image->data.F32[row][col+1])) { 187 if (image->data.F32[row][col] > thre ashold) {187 if (image->data.F32[row][col] > threshold) { 188 188 // Add peak at location (row, col) 189 189 } … … 194 194 (image->data.F32[row][col] > image->data.F32[row-1][col]) && 195 195 (image->data.F32[row][col] > image->data.F32[row][col-1])) { 196 if (image->data.F32[row][col] > thre ashold) {196 if (image->data.F32[row][col] > threshold) { 197 197 // Add peak at location (row, col) 198 198 }
Note:
See TracChangeset
for help on using the changeset viewer.
