KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
median.h
Go to the documentation of this file.
1 // median.h - median filtering on an image
3 // Author: Doron Tal
4 // Date created: May, 2000
5 
6 #ifndef _MEDIAN_H
7 #define _MEDIAN_H
8 
9 #include "wrap_dtlib_cpp/img.h"
10 
11 #warning "[Code police] Do not put 'using namespace' in global scope of header."
12 using namespace std;
13 
14 namespace DTLib {
15 
16  void MedianFilter(CImg<float>& InImg,
17  CImg<float>& OutImg,
18  const int& Radius);
19 
20 } // namespace DTLib {
21 
22 #endif /* #ifndef _MEDIAN_H */
void MedianFilter(CImg< float > &InImg, CImg< float > &OutImg, const int &Radius)
Definition: median.cpp:15