X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=deconvolution_sharpen_effect.h;h=c2ccbcb608ccd7916d7bf3763712bef2b06bc348;hp=9279abf52f9686ca60bac6c652fa9e5b14db9971;hb=9553f87faab0af4989db0369d732ef37db0a72e9;hpb=ac4fc36aa70ffefb6b9632dc0abea5cbbce5387b diff --git a/deconvolution_sharpen_effect.h b/deconvolution_sharpen_effect.h index 9279abf..c2ccbcb 100644 --- a/deconvolution_sharpen_effect.h +++ b/deconvolution_sharpen_effect.h @@ -19,15 +19,18 @@ // // Jain, Anil K.: “Fundamentals of Digital Image Processing”, Prentice Hall, 1988. -#include +#include #include #include #include "effect.h" +namespace movit { + class DeconvolutionSharpenEffect : public Effect { public: DeconvolutionSharpenEffect(); + virtual ~DeconvolutionSharpenEffect(); virtual std::string effect_type_id() const { return "DeconvolutionSharpenEffect"; } std::string output_fragment_shader(); @@ -64,8 +67,12 @@ private: Eigen::MatrixXf g; int last_R; float last_circle_radius, last_gaussian_radius, last_correlation, last_noise; + + float *uniform_samples; void update_deconvolution_kernel(); }; +} // namespace movit + #endif // !defined(_MOVIT_DECONVOLUTION_SHARPEN_EFFECT_H)