IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42567


Ignore:
Timestamp:
Dec 3, 2023, 3:03:53 PM (3 years ago)
Author:
eugene
Message:

merge changes from trunk: add comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20230313/dvoTools/src/dvoMakeCorrUnbin.c

    r41660 r42567  
    6464
    6565    // the input image is in magnitudes.  convert here to a multiplicative factor...
     66    // the calculation here must be consistent with the calculation of the grid correction
     67    // in relphot GridOps.c:259 (setMgrid)
    6668    for (int j = 0; j < outData->image->numRows; j++) {
    6769        for (int i = 0; i < outData->image->numCols; i++) {
    6870            float value = outData->image->data.F32[j][i];
    6971            outData->image->data.F32[j][i] = pow(10.0, -0.4*value);
     72            // outData->image->data.F32[j][i] = pow(10.0, 0.4*value);
    7073        }
    7174    }
Note: See TracChangeset for help on using the changeset viewer.