Namespaces | |
namespace | impl |
Implementation namespace of data::approx namespace. | |
Functions | |
template<typename I> | |
mln::trait::concrete< I >::ret | median (const Image< I > &input, const win::octagon2d &win) |
template<typename I> | |
mln::trait::concrete< I >::ret | median (const Image< I > &input, const win::disk2d &win) |
template<typename I> | |
mln::trait::concrete< I >::ret | median (const Image< I > &input, const win::rectangle2d &win) |
mln::trait::concrete< I >::ret mln::data::approx::median | ( | const Image< I > & | input, | |
const win::octagon2d & | win | |||
) | [inline] |
Compute in output
an approximate of the median filter of image input
by the 2D octagon win
.
[in] | input | The image to be filtered. |
[in] | win | The octagon. |
input
and output
have to be initialized. References median().
mln::trait::concrete< I >::ret mln::data::approx::median | ( | const Image< I > & | input, | |
const win::disk2d & | win | |||
) | [inline] |
Compute in output
an approximate of the median filter of image input
by the 2D disk win
.
[in] | input | The image to be filtered. |
[in] | win | The disk. |
input
and output
have to be initialized. References mln::data::median().
mln::trait::concrete< I >::ret mln::data::approx::median | ( | const Image< I > & | input, | |
const win::rectangle2d & | win | |||
) | [inline] |
Compute in output
an approximate of the median filter of image input
by the 2D rectangle win
.
[in] | input | The image to be filtered. |
[in] | win | The rectangle. |
input
and output
have to be initialized. References mln::data::median().
Referenced by median().