Main Page   Modules   Class Hierarchy   Compound List   File List   Compound Members   Related Pages   Examples  

Downsampling.h

00001 /* Copyright (c) 2001 S.E. Grigorescu */
00002 
00003 #ifndef DOWNSAMPLING_H
00004 #define DOWNSAMPLING_H
00005 
00006 #include <math.h>
00007 #include "Image.h"
00008 
00012 template<class T> void Downsample(Image< T >& input, Image< T >& output);
00021 template<class T> void Downsample(Image< T >& input);
00029 #endif 
00030