KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
convolve.h
Go to the documentation of this file.
1 // convolve.h - image convolution
3 // Author: Doron Tal
4 // Date created: April, 2000
5 
6 #include "wrap_dtlib_cpp/img.h"
7 
8 #ifndef _CONVOLVE_H
9 #define _CONVOLVE_H
10 
11 namespace DTLib {
12 
13  void Convolve(CImg<float>& InImg,
14  CImg<float>& KernelImg,
15  CImg<float>& OutImg);
16 
17 };
18 
19 #endif
void Convolve(CImg< float > &InImg, CImg< float > &KernelImg, CImg< float > &OutImg)
Definition: convolve.cpp:51