Changeset 3807 for trunk/pois/src/pois.h
- Timestamp:
- Apr 29, 2005, 8:40:09 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/pois/src/pois.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pois/src/pois.h
r3792 r3807 3 3 4 4 #include "pslib.h" 5 #include "poisErrorCodes.h" 5 6 6 7 #define abs(x) ((x) >= 0 ? (x) : (-(x))) … … 77 78 78 79 // Print usage information 79 void help(void);80 //void help(void); 80 81 81 82 // Parse the command line arguments 83 poisConfig *restrict poisConfigAlloc(void); 84 82 85 poisConfig *poisParseConfig(int argc, // Number of command-line arguments 83 86 char **argv // Command-line arguments … … 108 111 109 112 // Find stamps 110 psArray *poisFindStamps(psArray *stamps , // Existing list of stamps, or NULL113 psArray *poisFindStamps(psArray *stampsIO, // Existing list of stamps, or NULL 111 114 const psImage *image, // Image for which to find stamps 112 115 const psImage *mask, // Mask image … … 155 158 156 159 // Calculate deviations from the best fit for the stamps 157 psVector *poisCalculateDeviations(psVector *deviations ,// Output array of deviations, or NULL160 psVector *poisCalculateDeviations(psVector *deviationsIO, // Output array of deviations, or NULL 158 161 psArray *stamps, // Array of stamps 159 162 psImage *refImage, // Reference image … … 181 184 182 185 // Solve the matrix equation 183 psVector *poisSolveEquation(psVector *solution , // Solution vector, or NULL186 psVector *poisSolveEquation(psVector *solutionIO, // Solution vector, or NULL 184 187 const psArray *stamps, // Array of stamps 185 188 const poisConfig *config … … 200 203 /************************************************************************************************************/ 201 204 205 psImage *poisImageSetVal(psImage *restrict IO, // Input image 206 const psC64 val // set to this value 207 ); 208 209 psImage *poisImageSetValInMask(psImage *IO, // Image to update, or NULL 210 const psImage *restrict in, // Input image 211 const psImage *mask, // mask for image 212 const psC64 val, // set to this value 213 const unsigned long bits // set pixels where mask & bits != 0 214 ); 215 202 216 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
