IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2897 for trunk/stac/src/stac.h


Ignore:
Timestamp:
Jan 4, 2005, 3:55:40 PM (22 years ago)
Author:
Paul Price
Message:

Updated to handle higher polynomial orders than linear, and to calculate the output size itself

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/stac/src/stac.h

    r2783 r2897  
    2222    const char *output;                 // Output file name
    2323    int outnx, outny;                   // Size of output image
     24    float xOffset, yOffset;             // Offset to get lower-left corner at 0,0
    2425    float saturated;                    // Saturation level
    2526    float bad;                          // Bad level
     
    127128
    128129// Invert an array of maps
    129 psArray *stacInvertMaps(const psArray *maps // Array of maps to invert
     130psArray *stacInvertMaps(const psArray *maps, // Array of maps to invert
     131                        const stacConfig *config // Configuration
    130132    );
    131133
     
    168170/************************************************************************************************************/
    169171
     172// stacSize.c
     173
     174// Calculate the size of the output image
     175bool stacSize(stacConfig *config,       // Configuration, containing the output size
     176              const psArray *images,    // Input images
     177              psArray *maps             // Transformation maps
     178    );
     179
     180
     181/************************************************************************************************************/
     182
    170183#endif
Note: See TracChangeset for help on using the changeset viewer.