IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18969 for trunk/ppImage/src


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

skipping video cells

Location:
trunk/ppImage/src
Files:
2 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");
  • trunk/ppImage/src/ppImageLoop.c

    r18917 r18969  
    6464            }
    6565
     66            // XXX for now, skip the video cells (cell->readouts->n > 1)
     67            if (cell->readouts->n > 1) {
     68              psWarning ("Skipping Video Cell for ppImageDetrendReadout");
     69              continue;
     70            }
    6671
    6772            // process each of the readouts
Note: See TracChangeset for help on using the changeset viewer.