Original implementation of Blur Image Filters

With Gaussian, fast Gaussian, Hashed and morphological (opening and closing) methods. Remembering shader code for other fast methods.
This commit is contained in:
Bruno Herbelin
2022-05-31 00:34:37 +02:00
parent 662d8bcfda
commit e3bb95b3dd
27 changed files with 628 additions and 155 deletions

View File

@@ -20,6 +20,7 @@ public:
typedef enum {
FILTER_PASSTHROUGH = 0,
FILTER_DELAY,
FILTER_BLUR,
FILTER_IMAGE,
FILTER_INVALID
} Type;