27 #ifndef __imagePeakInterp_hpp__
28 #define __imagePeakInterp_hpp__
47 template<
typename transformT>
51 typedef typename transformT::arithT realT;
53 transformT m_transform;
68 void operator()( realT & x,
73 int r = (1.0*im.rows())/m_tol + 1;
74 int c = (1.0*im.cols())/m_tol + 1;
82 m_magIm.maxCoeff(&nx,&ny);
Tools for using the eigen library for image processing.
constexpr units::realT c()
The speed of light.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
Find the peak of an image using interpolation.