IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23903


Ignore:
Timestamp:
Apr 17, 2009, 12:44:56 PM (17 years ago)
Author:
eugene
Message:

skip cells which are empty

File:
1 edited

Legend:

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

    r23871 r23903  
    8787            if (!cell) continue;
    8888            psImage *image = imageRow->data[col];
     89            if (!image) continue; // XXX assert on this?
    8990
    9091            psStatsInit (stats);
     
    100101        for (int col = 0; col < cellRow->n; col++) {
    101102            psImage *image = imageRow->data[col];
     103            if (!image) continue;
    102104
    103105            // initialize the storage vectors
     
    144146
    145147                pmCell *cell = cellRow->data[i];
     148                if (!cell) continue; // XXX assert on this?
    146149
    147150                psStatsInit (stats);
Note: See TracChangeset for help on using the changeset viewer.