Début du TP convolution. Pour l'instant uniquement lecture d'une vidéo.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 06_Convolution / provider / ConvolutionProvider.h
1 #ifndef CONVOLUTION_PROVIDER_H
2 #define CONVOLUTION_PROVIDER_H
3
4 #include "Convolution.h"
5 #include "ImageConvolutionCuda.h"
6
7 class ConvolutionProvider
8 {
9 public:
10 static Convolution* create(int w, int h);
11 static Image* createGL(const string& videoPath);
12 };
13
14 #endif