manyPlus


Author V. C. Mohan
Date 10 Nov 2021

This plugin is a cosolidation of modPlus, movePlus, FQPlus, testInput and Grid into one and the code has been updated. The freq domain filter functions use .lib derived from FFTW3 dll. As that dll is not thread safe, but creates its own threads, thse functions operate in MT_SERIALIZED state.

Rest of functions work in image space domain. It is better to seperate fields of interlaced video input. Not all functions check this, so left to users descretion. All these functions can be used for bit depths 8 to 16 as well as float formats. Most (excepting freq domain) of these functions are thread safe (MT_NICE_FILTER and a few are MT_MULTI_INSTANCE).


Functions which were part of modPlus

1. GBlur : Introduces Gaussian Blur on image.

2. Fan : A filter to attenuate regular frequency noise or (white or black) streaks ( corresponds to Fan Filter plugin of avisynth).

3. MBlur : Introduces motion or focus blur on image.(F2QBlur of FQPlus operates in frequency domain while this is in 2D image domain). Corresponds to HBlur plugin of avisynth

4. Median : In a grid, size of which is changed depending on local statistics, noise is attenuated.( Corresponds to AdaptiveMedian of avisynth plugins).

5. minvar : By minimising variance noise is attenuated. ( corresponds to DeNoise plugin of avisynth)

6. Morph : Using morphology princeples image is 'dilate' or 'erode' or 'open' or 'close' or 'median' filtered ( corresponds to morph function of colorit plugin of avisynth 2.5. Now deprecated)

7. Neural : Given a target image derived from input, learns to process to get similar results.( corresponds to NeuralNetLN of NeuralNet plugin of avisynth).

8. SaltPepper : Removes Salt and Pepper noise spikes from image. ( DeSaltPepper plugin of avisynth ).

9. SegAmp : Smooths and sharpens image using watershed algorithm for segmentation( SegmentedAmp plugin of avisynth ).

10. TweakHist : Equalizes or matches Histogram. ( HistogramAdjust plugin of avisynth).

11. Veed : A gentle filter to remove either green or blue sheen seen in some videos ( corresponds to DeVeed plugin of avisynth).

the following four functions are from movePlus plugin. As the name implies, these functions move or reposition pixels


1. Barrel : Due to sphericity of the lenses used in cameras, either Barrel type or Pin cushion type distortions are often seen in images. This Function corrects these distortions. Extensively modified on 24 Oct 2021
2. Reform : Converts a quadrilateral image into rectangular one or vice versa.
3. Turn : Turns the image through given angle in degrees about a specified fulcrum
3. Fisheye : Corrects distortions of Fish Eye.

The following 10 functions operate in frequency domain.. The freq domain filter functions require 32 bit dll or for 64 bit FFTw3f 64 bit dll, to be in the path.


1. F1QTest : Provides visual aid to estimate type and specifications of 1D filters needed.
2. F1Quiver : Filters input image with specified 1D filters
3. F1QClean : Cleans or limits frequency components
4. F2QTest : Provides visual aid to estimate type and specifications of 2D filters needed
5. F2Quiver : Filters input image with specified 2D filters
6. F2Qlimit : Filters input image with specified 2D filters
7. F2QBlur : produces either a motion blur or out of focus blur on an image.
8. F2QCorrelation : Cross correlates two image frames.
9. F2QSharp : Sharpens image by unblurring, given the blur estimate.

10. F2QBokeh : Detects sharp and blurred parts of image and blurrs. Similar to function Bokeh .

The following 7 functions are utilities and some were developed on specific request from academia.


1. Bokeh. Accentuates "bokeh" effect on image similar to function F2QBokeh
2. DeJitter. Removes Jitter on input, seen in some VHS conversions.
3. Grid creates a grid or rulers on frame to estimate coordinates correctly
4. Jitter. Jitter introduces some Jitter on input, akin to what some VHS conversions have.
5. PatternPattern overlays some sinusoidal pattern which may be useful to test software during development.
6. Circles Concentric circles with specified origin are drawn on input image.


7. StepFilter Regular noise which look like horizontal bars on image seen in some vhs conversions can be corrected.


To my index page down loadmanyPlus plugin To Avisynth