27#ifndef improc_circleOuterpix_hpp
28#define improc_circleOuterpix_hpp
54template <
typename realT>
67 circ.resize( masked.rows(), masked.cols() );
72 for(
size_t i = 0; i < masked.rows(); ++i )
80 for(
size_t j = 0; j < masked.cols(); ++j )
82 if( masked( i, j ) == 1 )
103 for(
size_t j = 0; j < masked.cols(); ++j )
111 for(
size_t i = 0; i < masked.rows(); ++i )
113 if( masked( i, j ) == 1 )
138 for(
size_t i = 0; i < masked.rows(); ++i )
140 for(
size_t j = 0; j < (size_t)masked.cols(); ++j )
142 if( circ( i, j ) == 1 )
156 for(
size_t i = 0; i < (size_t)circ.rows(); ++i )
158 for(
size_t j = 0; j < (size_t)circ.cols(); ++j )
160 if( circ( i, j ) == 1 )
162 avgr += sqrt( pow( i - avgx, 2 ) + pow( j - avgy, 2 ) );
163 avgr0 += sqrt( pow( i - x0, 2 ) + pow( j - y0, 2 ) );
Tools for using the eigen library for image processing.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
int circleOuterpix(realT &x0, realT &y0, realT &avgr0, realT &avgx, realT &avgy, realT &avgr, eigenImage< realT > &circ, const eigenImage< realT > &masked)
Find the center and the outermost pixels of a circular mask, giving an estimate of the radius.
int imageCenterOfLight(typename imageT::Scalar &x, typename imageT::Scalar &y, const imageT &im)
Calculate the center of light of an image.
Header for the image processing utilities.