IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2008, 9:00:55 AM (18 years ago)
Author:
eugene
Message:

skipping video cells

File:
1 edited

Legend:

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

    r14000 r18969  
    9393    for (int i = 0; i < cells->n; i++) {
    9494        pmCell *cell = cells->data[i];  // Cell of interest
     95
     96        // XXX for now, skip the video cells (cell->readouts->n > 1)
     97        if (cell->readouts->n > 1) {
     98          psWarning ("Skipping Video Cell for ppImageDetrendFringe.c:getFringes");
     99          continue;
     100        }
     101
    95102        fringes->data[i] = psMemIncrRefCounter(psMetadataLookupPtr(NULL, cell->analysis, source));
    96103    }
     
    320327        }
    321328
     329        // XXX for now, skip the video cells (cell->readouts->n > 1)
     330        if (cell->readouts->n > 1) {
     331          psWarning ("Skipping Video Cell for ppImageDetrendFringeApply");
     332          continue;
     333        }
     334
    322335        if (!ppImageDetrendFringeGenerate(cell, fringeCell, options)) {
    323336            psError(PS_ERR_UNKNOWN, false, "failed to apply fringe image.\n");
Note: See TracChangeset for help on using the changeset viewer.