$extrastylesheet
Namespaces | |
| namespace | impl |
Functions | |
| template<typename I , typename W , typename O > | |
| void | median (const Image< I > &input, const Window< W > &win, Image< O > &output) |
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 | ||
| ) |
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.