X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=deconvolution_sharpen_effect.h;h=1f6807172d85444b6f77c4a93e89e0a0ea6144a3;hp=80553adf0aecb5557cbbc85d30698fba40998f8b;hb=c5285a66dd15495df93d5709dd09d4977f428835;hpb=37f56fcbe571b2322243f6de59494bf9e0cbb37a diff --git a/deconvolution_sharpen_effect.h b/deconvolution_sharpen_effect.h index 80553ad..1f68071 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,12 +19,14 @@ // // 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(); @@ -68,4 +70,6 @@ private: void update_deconvolution_kernel(); }; -#endif // !defined(_DECONVOLUTION_SHARPEN_EFFECT_H) +} // namespace movit + +#endif // !defined(_MOVIT_DECONVOLUTION_SHARPEN_EFFECT_H)