185 if( sizeX == m_sizeX && sizeY == m_sizeY && xcen == m_xcen && ycen == m_ycen )
193 m_indexIm.resize( m_sizeX, m_sizeY );
197 radIm.resize( m_sizeX, m_sizeY );
200 std::map<realT, size_t> unrads;
203 for(
int i = 0; i < radIm.cols(); ++i )
205 for(
int j = 0; j < radIm.rows(); ++j )
208 unrads.insert( std::pair<realT, size_t>( radIm( j, i ), 0 ) );
213 m_radius.resize( unrads.size() );
214 typename std::map<realT, size_t>::iterator it;
216 for( it = unrads.begin(); it != unrads.end(); ++it )
218 m_radius[n] = it->first;
223 for(
int i = 0; i < radIm.cols(); ++i )
225 for(
int j = 0; j < radIm.rows(); ++j )
227 it = unrads.find( radIm( j, i ) );
228 m_indexIm( j, i ) = it->second;
232 if( m_bgMax > m_bgMin && m_bgMin > 0 )
237 for(
int cc = 0; cc < radIm.cols(); ++cc )
239 for(
int rr = 0; rr < radIm.rows(); ++rr )
241 if( radIm( rr, cc ) >= m_bgMin && radIm( rr, cc ) <= m_bgMax )
243 m_bgx.push_back( rr );
244 m_bgy.push_back( cc );
279 std::vector<realT> *deltaPhot,
287 maxr = m_radius.back();
289 cumPhot.resize( m_radius.size(), 0 );
292 int x0 = xcen - maxr;
295 int x1 = xcen + maxr;
296 if( x1 > m_indexIm.rows() - 1 )
297 x1 = m_indexIm.rows() - 1;
299 int y0 = ycen - maxr;
302 int y1 = ycen + maxr;
303 if( y1 > m_indexIm.cols() - 1 )
304 y1 = m_indexIm.rows() - 1;
308 if( m_bgx.size() > 0 )
310 std::vector<realT> bgann( m_bgx.size() );
311 for(
size_t n = 0; n < m_bgx.size(); ++n )
313 bgann[n] = im( (
int)m_bgx[n], (
int)m_bgy[n] );
317 std::cerr <<
"background: " << bg <<
"\n";
322 if( maxr == m_radius.back() )
324 for(
int i = y0; i <= y1; ++i )
326 for(
int j = x0; j <= x1; ++j )
328 cumPhot[m_indexIm( j, i )] += im( j, i ) - bg;
334 for(
int i = y0; i <= y1; ++i )
336 for(
int j = x0; j <= x1; ++j )
338 if( m_radius[m_indexIm( j, i )] <= maxr )
339 cumPhot[m_indexIm( j, i )] += im( j, i );
345 if( deltaPhot !=
nullptr )
347 deltaPhot->assign( cumPhot.begin(), cumPhot.end() );
351 for(
int i = 1; i < cumPhot.size(); ++i )
353 cumPhot[i] += cumPhot[i - 1];
int cumPhotWork(std::vector< realT > &cumPhot, std::vector< realT > *deltaPhot, eigenImage< realT > &im, realT maxr=0)
Get the cumulative photometry of an image as a function of radius.
void radiusImage(eigenT &m, typename eigenT::Scalar xc, typename eigenT::Scalar yc, typename eigenT::Scalar scale=1)
Fills in the cells of an Eigen 2D Array with their radius from the center.