d952df81eff555048fc68f207de593696cbd5e9c
5 #include "Animable_I.h"
9 #include "ConvolutionDevice.h"
11 class Convolution
: public Animable_I
14 Convolution(int w
, int h
);
17 void runGPU(uchar4
* ptrDevPixels
) /*override*/;
18 void animationStep() /*override*/;
20 int getW() /*override*/;
21 int getH() /*override*/;
22 float getT() /*override*/;
24 std::string
getTitle(void) /*override*/;
35 const std::string title
;
37 uchar4
* ptrDevImageSource
;
39 static const float kernel
[KERNEL_SIZE
][KERNEL_SIZE
];