IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 30, 2005, 7:05:28 AM (21 years ago)
Author:
eugene
Message:

cleanups, segfault fixes, etc

File:
1 edited

Legend:

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

    r5857 r5858  
    55    ppData data;
    66    ppConfig config;
    7     ppRecipe options;
     7    ppOptions options;
    88
    99    psTimerStart("phase2");
    1010
    1111    // Parse the configuration and arguments
    12     ppConfigLoad (&config, argc, argv);
     12    ppImageConfig (&config, argc, argv);
    1313
    1414    // Open the input image, output image, output mask
    1515    // Get camera configuration from header if not already defined
    1616    // Construct camera in preparation for reading
    17     ppDataLoadMeta (&data, &config, argv);
     17    ppImageParseCamera (&data, &config, argv);
    1818
    1919    // Set various tasks (define optional operations)
    20     ppRecipeInit (&options, &config)
     20    ppImageOptions (&data, &options, &config);
    2121
    22     // Read in the input pixels
    23     // Generate mask and weight frame
    24     // Read in detrend pixels
    25     ppDataLoadPixels (&data, &options, &config);
     22    // open detrend images, load headers, optionally load pixels
     23    ppImageParseDetrend (&data, &options, &config);
    2624
    2725    // Image Arithmetic Loop
     
    2927
    3028    // output options
    31     ppImageOutput (&data, &options, &config);
     29    // ppImageOutput (&data, &options, &config);
    3230
    3331    exit (0);
Note: See TracChangeset for help on using the changeset viewer.