IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 30, 2006, 11:56:09 AM (20 years ago)
Author:
jhoblitt
Message:

add phase 3 masking support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/camtoolConfig.c

    r9392 r9790  
    9393            "define banana 2", NULL);
    9494
     95    // -block
     96    psMetadata *blockArgs = psMetadataAlloc();
     97    psMetadataAddStr(blockArgs, PS_LIST_TAIL, "-label",  0,
     98            "name of a label to mask out", NULL);
     99   
     100    // -masked
     101    psMetadata *maskedArgs = psMetadataAlloc();
     102    psMetadataAddBool(maskedArgs, PS_LIST_TAIL, "-simple",  0,
     103            "use the simple output format", false);
     104   
     105    // -unblock
     106    psMetadata *unblockArgs = psMetadataAlloc();
     107    psMetadataAddStr(unblockArgs, PS_LIST_TAIL, "-label",  0,
     108            "name of a label to unmask", NULL);
     109
    95110#define PXTOOL_MODE(option, modeval, argset) \
    96111{ \
     
    116131    PXTOOL_MODE("-pendingimfile",P3TOOL_MODE_PENDINGIMFILE,pendingimfileArgs);
    117132    PXTOOL_MODE("-addprocessedexp", P3TOOL_MODE_ADDPROCESSEDEXP, addprocessedexpArgs);
     133    PXTOOL_MODE("-block",        P3TOOL_MODE_BLOCK,          blockArgs);
     134    PXTOOL_MODE("-masked",       P3TOOL_MODE_MASKED,         maskedArgs);
     135    PXTOOL_MODE("-unblock",      P3TOOL_MODE_UNBLOCK,        unblockArgs);
    118136
    119137    bool argErr = false;
Note: See TracChangeset for help on using the changeset viewer.