IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 30, 2010, 3:29:11 PM (15 years ago)
Author:
bills
Message:

in pstamp_job_run.pl If the input images are not magicked do not set masked pixels to NAN.
in ppstamp add a flag to ppstamp to not censor (set to NAN) masked pixels.
(Default is to censor)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pstamp/src/ppstampArguments.c

    r29379 r29885  
    2525    fprintf(stderr, "   [-mask   mk_image] :     mask image\n");
    2626    fprintf(stderr, "   [-variance var_image] :  variance image\n");
     27    fprintf(stderr, "   [-no_censor_masked] : do not set masked pixels to NAN\n");
    2728    fprintf(stderr, "\n");
    2829
     
    9596    }
    9697   
     98    if ((argnum = psArgumentGet(argc, argv, "-no_censor_masked"))) {
     99        psArgumentRemove(argnum, &argc, argv);
     100        options->censorMasked = false;
     101    }
    97102
    98103    // finally the output file
Note: See TracChangeset for help on using the changeset viewer.