IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 13, 2006, 5:14:07 PM (21 years ago)
Author:
Paul Price
Message:

Small hacks from updating psModule code for FPAs and concepts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImage.c

    r5860 r5976  
    1 # include "ppImage.h"
     1#include "ppImage.h"
    22
    3 int main (int argc, char **argv) {
     3int main(int argc, char **argv)
     4{
    45
    56    ppData data;
     
    78    ppOptions options;
    89
    9     psTimerStart("phase2");
     10    psTimerStart(TIMERNAME);
    1011
    1112    // Parse the configuration and arguments
    12     ppImageConfig (&config, argc, argv);
     13    ppImageConfig(&config, argc, argv);
    1314
    1415    // Open the input image, output image, output mask
    1516    // Get camera configuration from header if not already defined
    1617    // Construct camera in preparation for reading
    17     ppImageParseCamera (&data, &config);
     18    ppImageParseCamera(&data, &config);
    1819
    1920    // Set various tasks (define optional operations)
    20     ppImageOptions (&data, &options, &config);
     21    ppImageOptions(&data, &options, &config);
    2122
    2223    // open detrend images, load headers, optionally load pixels
    23     ppImageParseDetrend (&data, &options, &config);
     24    ppImageParseDetrend(&data, &options, &config);
    2425
    2526    // Image Arithmetic Loop
    26     ppImageLoop (&data, &options, &config);
     27    ppImageLoop(&data, &options, &config);
    2728
    2829    // output options
    29     // ppImageOutput (&data, &options, &config);
     30    // ppImageOutput(&data, &options, &config);
    3031
    31     exit (0);
     32    exit(EXIT_SUCCESS);
    3233}
Note: See TracChangeset for help on using the changeset viewer.