IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26474


Ignore:
Timestamp:
Dec 22, 2009, 9:55:34 AM (16 years ago)
Author:
eugene
Message:

adding hermitian kernels

Location:
branches/eam_branches/20091201/psModules/src/imcombine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20091201/psModules/src/imcombine/Makefile.am

    r23242 r26474  
    1313        pmSubtractionIO.c       \
    1414        pmSubtractionKernels.c  \
     15        pmSubtractionHermitian.c        \
    1516        pmSubtractionMask.c     \
    1617        pmSubtractionMatch.c    \
     
    3233        pmSubtractionIO.h       \
    3334        pmSubtractionKernels.h  \
     35        pmSubtractionHermitian.h        \
    3436        pmSubtractionMask.h     \
    3537        pmSubtractionMatch.h    \
  • branches/eam_branches/20091201/psModules/src/imcombine/pmSubtraction.c

    r26373 r26474  
    161161          }
    162162          case PM_SUBTRACTION_KERNEL_ISIS: {
     163              solvedKernelISIS(kernel, kernels, value, i);
     164              break;
     165          }
     166          case PM_SUBTRACTION_KERNEL_HERM: {
    163167              solvedKernelISIS(kernel, kernels, value, i);
    164168              break;
     
    680684          return convolveStampISIS(image, kernels, index, footprint);
    681685      }
     686      case PM_SUBTRACTION_KERNEL_HERM: {
     687          return convolveStampISIS(image, kernels, index, footprint);
     688      }
    682689      case PM_SUBTRACTION_KERNEL_RINGS: {
    683690          psKernel *convolved = psKernelAlloc(-footprint, footprint,
     
    13921399    }
    13931400
    1394 
    13951401    psLogMsg("psModules.imcombine", PS_LOG_INFO, "Convolve image: %f sec",
    13961402             psTimerClear("pmSubtractionConvolve"));
Note: See TracChangeset for help on using the changeset viewer.