Namespaces | Functions

mln::data::naive Namespace Reference

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.

Detailed Description

Namespace of image processing routines related to pixel levels with naive approach.


Function Documentation

template<typename I , typename W , typename O >
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.

Parameters:
[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.

Precondition:
input and output have to be initialized.
See also:
mln::data::median

Definition at line 99 of file naive/median.hh.