#include "boost/utility/enable_if.hpp"
#include "til/til_common.h"
#include "til/labels.h"
Go to the source code of this file.
|
| til |
| Belongs to package Box Do not include directly, include til/Box.h instead.
|
|
|
template<class TImage > |
t_bsprec | til::sum (const TImage &im) |
| Computes the sum of the intensities of the input image. More...
|
|
template<class TImage > |
t_bsprec | til::mean (const TImage &im) |
| Returns the mean of the intensities of the input image. More...
|
|
template<class TImage > |
t_bsprec | til::varEst (const TImage &im) |
| Returns the estimated variance of the intensities of the input image. More...
|
|
template<class TImage > |
boost::enable_if< is_Image< TImage >, t_bsprec >::type | til::var (const TImage &im, t_bsprec meanIm) |
| Returns the variance of the intensities of the input image (Normalization by size) More...
|
|
template<class TImage > |
INLINE boost::enable_if< is_Image< TImage >, t_bsprec >::type | til::var (const TImage &im) |
|
template<class TImage > |
TImage::value_type | til::max (const TImage &im) |
| Returns the maximum intensity of the input image. More...
|
|
template<class TImage > |
boost::enable_if< is_Image< TImage >, typename TImage::value_type >::type | til::min (const TImage &im) |
|