IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 22, 2006, 5:36:09 PM (19 years ago)
Author:
Paul Price
Message:

Fixing indexing problem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStats/src/ppStatsLoop.c

    r9738 r10165  
    163163        for (int i = 0; i < numSamples; i++) {
    164164            int j = i * sampleSpace;
    165             int y = j / image->numRows;
    166             int x = j % image->numRows;
     165            int y = j / image->numCols;
     166            int x = j % image->numCols;
    167167            sampleValues->data.F32[i] = image->data.F32[y][x];
    168168            if (mask) {
Note: See TracChangeset for help on using the changeset viewer.