X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=deconvolution_sharpen_effect.h;h=e4cc9a556d224e239e411b98c2c1596374ff182e;hp=a0b405a6c7f829f5d94cc4bf3ca3429c85968e45;hb=6cb5e1fe7bc64c156da45b7646e2e52bf473e253;hpb=7af4d1b54ba141fdb74cd13ddc6110708855d157 diff --git a/deconvolution_sharpen_effect.h b/deconvolution_sharpen_effect.h index a0b405a..e4cc9a5 100644 --- a/deconvolution_sharpen_effect.h +++ b/deconvolution_sharpen_effect.h @@ -1,5 +1,5 @@ -#ifndef _DECONVOLUTION_SHARPEN_EFFECT_H -#define _DECONVOLUTION_SHARPEN_EFFECT_H 1 +#ifndef _MOVIT_DECONVOLUTION_SHARPEN_EFFECT_H +#define _MOVIT_DECONVOLUTION_SHARPEN_EFFECT_H 1 // DeconvolutionSharpenEffect is an effect that sharpens by way of deconvolution // (i.e., trying to reverse the blur kernel, as opposed to just boosting high @@ -19,9 +19,13 @@ // // Jain, Anil K.: “Fundamentals of Digital Image Processing”, Prentice Hall, 1988. +#include +#include +#include + #include "effect.h" -#include +namespace movit { class DeconvolutionSharpenEffect : public Effect { public: @@ -66,4 +70,6 @@ private: void update_deconvolution_kernel(); }; -#endif // !defined(_DECONVOLUTION_SHARPEN_EFFECT_H) +} // namespace movit + +#endif // !defined(_MOVIT_DECONVOLUTION_SHARPEN_EFFECT_H)