IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11805 for trunk/dvoTools/src


Ignore:
Timestamp:
Feb 14, 2007, 3:11:18 PM (19 years ago)
Author:
eugene
Message:

add .cvsignore, fix missing declaration

Location:
trunk/dvoTools
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dvoTools

    • Property svn:ignore set to
      Makefile
      Makefile.in
      aclocal.m4
      autom4te.cache
      compile
      config.guess
      config.log
      config.status
      config.sub
      configure
      depcomp
      install-sh
      ltmain.sh
      missing
  • trunk/dvoTools/src

    • Property svn:ignore set to
      .deps
      Makefile
      Makefile.in
      config.h
      config.h.in
      dvoApplyCorr
      dvoMakeCorr
      stamp-h1
  • trunk/dvoTools/src/dvoMakeCorrUnbin.c

    r11804 r11805  
    6464    for (int j = 0; j < outData->image->numRows; j++) {
    6565        for (int i = 0; i < outData->image->numCols; i++) {
    66             value = outData->image[j][i];
    67             outData->image[j][i] = pow(10.0, -0.4*value);
     66            float value = outData->image->data.F32[j][i];
     67            outData->image->data.F32[j][i] = pow(10.0, -0.4*value);
    6868        }
    6969    }
Note: See TracChangeset for help on using the changeset viewer.