Namespace of image processing routines related to pixel levels with naive approach. More...
Namespaces | |
namespace | impl |
Implementation namespace of data::naive namespace. | |
Functions | |
template<typename I , typename W , typename O > | |
void | median (const Image< I > &input, const Window< W > &win, Image< O > &output) |
Compute in output the median filter of image input by the window win . |
Namespace of image processing routines related to pixel levels with naive approach.
void mln::data::naive::median | ( | const Image< I > & | input, | |
const Window< W > & | win, | |||
Image< O > & | output | |||
) | [inline] |
Compute in output
the median filter of image input
by the window win
.
[in] | input | The image to be filtered. |
[in] | win | The window. |
[in,out] | output | The output image. |
This is a NAIVE version for test / comparison purpose so do NOT use it.
input
and output
have to be initialized.References mln::exact(), and mln::data::naive::impl::median().