$extrastylesheet
Functions | |
template<typename I > | |
mln::value::props< typename I::value >::sum | mean (const Image< I > &input) |
template<typename S , typename I , typename M > | |
void | mean (const Image< I > &input, M &result) |
template<typename I > | |
void | min_max (const Image< I > &input, typename I::value &min, typename I::value &max) |
template<typename I > | |
mln::value::props< typename I::value >::sum | sum (const Image< I > &input) |
template<typename I , typename S > | |
void | sum (const Image< I > &input, S &result) |
Namespace of estimation materials.
mln::value::props< typename I ::value >::sum mln::estim::mean | ( | const Image< I > & | input | ) |
Compute the mean value of the pixels of image input
.
[in] | input | The image. |
void mln::estim::mean | ( | const Image< I > & | input, |
M & | result | ||
) |
Compute the mean value of the pixels of image input
.
[in] | input | The image. |
[out] | result | The mean value. |
The free parameter S
is the type used to compute the summation.
void mln::estim::min_max | ( | const Image< I > & | input, |
typename I::value & | min, | ||
typename I::value & | max | ||
) |
Compute the min and max values of the pixels of image input
.
[in] | input | The image. |
[out] | min | The minimum pixel value of input . |
[out] | max | The maximum pixel value of input . |
mln::value::props< typename I ::value >::sum mln::estim::sum | ( | const Image< I > & | input | ) |
Compute the sum value of the pixels of image input
.
[in] | input | The image. |
void mln::estim::sum | ( | const Image< I > & | input, |
S & | result | ||
) |
Compute the sum value of the pixels of image input
.
[in] | input | The image. |
[out] | result | The sum value. |