$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
mln::data::naive Namespace Reference

Namespaces

namespace  impl

Functions

template<typename I , typename W , typename O >
void median (const Image< I > &input, const Window< W > &win, Image< O > &output)

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 
)

Compute in output the median filter of image input by the window win.

Parameters
[in]inputThe image to be filtered.
[in]winThe window.
[in,out]outputThe 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