IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32161


Ignore:
Timestamp:
Aug 21, 2011, 9:28:47 PM (15 years ago)
Author:
mhuber
Message:

minor cleanup

Location:
branches/meh_branches/ppstack_test/ppStack/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/meh_branches/ppstack_test/ppStack/src/ppStackConvolve.c

    r32134 r32161  
    376376        float median = numGood % 2 ? values->data.F32[numGood / 2] :
    377377            0.5 * (values->data.F32[numGood / 2 - 1] + values->data.F32[numGood / 2]);
    378         // MEH adding abs
     378        // EAM/MEH adding abs
    379379        float rms = 0.74 * fabsf(values->data.F32[numGood * 3 / 4] -
    380380                            values->data.F32[numGood / 4]); // Estimated RMS from interquartile range
    381         //float rms = 0.74 * (values->data.F32[numGood * 3 / 4] -
    382         //                    values->data.F32[numGood / 4]); // Estimated RMS from interquartile range
    383381        psFree(values);
    384382
  • branches/meh_branches/ppstack_test/ppStack/src/ppStackMatch.c

    r32134 r32161  
    441441                assert(item->type == PS_DATA_UNKNOWN);
    442442                pmSubtractionKernels *kernels = item->data.V; // Convolution kernels
    443                 // MEH sum the RMS?
     443                // EAM/MEH sum the RMS instead of the mean now
    444444                sum += kernels->rms;
    445                 //sum += kernels->mean;
    446445                num++;
    447446            }
Note: See TracChangeset for help on using the changeset viewer.