ModPlus
m (→Description) |
(→Filters: update description with corresponding plugins) |
||
Line 28: | Line 28: | ||
{{PluginFilterTable2}} | {{PluginFilterTable2}} | ||
{{PluginFilterRow|modPlus|GBlur| | {{PluginFilterRow|modPlus|GBlur| | ||
− | Introduces Gaussian Blur on image. | + | Introduces Gaussian Blur on image. (corresponds to the [[GBlur]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|Fan| | {{PluginFilterRow|modPlus|Fan| | ||
− | A filter to attenuate regular frequency noise or (white or black) streaks ( corresponds to | + | A filter to attenuate regular frequency noise or (white or black) streaks (corresponds to the [[FanFilter]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|MBlur| | {{PluginFilterRow|modPlus|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 | + | Introduces motion or focus blur on image.(F2QBlur of FQPlus operates in frequency domain while this is in 2D image domain). Corresponds to the [[HBlur]] plugin. |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|Median| | {{PluginFilterRow|modPlus|Median| | ||
− | In a grid size of which adapts, noise is attenuated.( | + | In a grid size of which adapts, noise is attenuated. (corresponds to the [[AdaptiveMedian]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|minvar| | {{PluginFilterRow|modPlus|minvar| | ||
− | By minimising variance noise is attenuated. ( corresponds to DeNoise plugin | + | By minimising variance noise is attenuated. (corresponds to the [[DeNoise]] plugin) |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|Morph| | {{PluginFilterRow|modPlus|Morph| | ||
− | Using morphology princeples image is 'dilate' or 'erode' or 'open' or 'close' or 'median' filtered ( corresponds to | + | Using morphology princeples image is 'dilate' or 'erode' or 'open' or 'close' or 'median' filtered (corresponds to the [[Morph]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|Neutral| | {{PluginFilterRow|modPlus|Neutral| | ||
− | Given a target image derived from input, learns to process to get similar results.( corresponds to NeuralNetLN of NeuralNet plugin | + | Given a target image derived from input, learns to process to get similar results. (corresponds to the <code>NeuralNetLN</code> function of the [[NeuralNet]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|SaltPepper| | {{PluginFilterRow|modPlus|SaltPepper| | ||
− | Removes Salt and Pepper noise spikes from image. ( | + | Removes Salt and Pepper noise spikes from image. (corresponds to the [[DeSaltPepper]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|SegAmp| | {{PluginFilterRow|modPlus|SegAmp| | ||
− | Smooths and sharpens image using watershed algorithm for segmentation( | + | Smooths and sharpens image using watershed algorithm for segmentation(corresponds to the [[SegmentedAmp]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|TweakHist| | {{PluginFilterRow|modPlus|TweakHist| | ||
− | Equalizes or matches Histogram. ( | + | Equalizes or matches Histogram. (corresponds to the [[HistogramAdjust]] plugin). |
| | | | ||
}} | }} | ||
{{PluginFilterRow|modPlus|Veed| | {{PluginFilterRow|modPlus|Veed| | ||
− | A gentle filter to remove either green or blue sheen seen in some videos ( corresponds to DeVeed plugin | + | A gentle filter to remove either green or blue sheen seen in some videos (corresponds to the [[DeVeed]] plugin). |
| | | | ||
}} | }} |
Revision as of 20:14, 7 June 2020
Abstract | |
---|---|
Author | V. C. Mohan |
Version | 2018/09/17 |
Download | modPlus.7z |
Category | Multipurpose Filters |
License | GPLv3 |
Discussion | Doom9 Thread |
Contents |
Description
This plugin has 11 functions, which modify values of color components to attenuate noise, blur or equalize input. These functions were originally coded as individual plugins for AviSynth. Due to recent changes in AviSynth+ capabilities, these functions were put together, modified and updated. All these functions are thread safe. (MT_NICE_FILTER)
- See official documentation: http://www.avisynth.nl/users/vcmohan/modPlus/modPlus.html
Requirements
- *** vcredist_x86.exe is required for modPlus-x86
- *** vcredist_x64.exe is required for modPlus-x64
Filters
Filter | Description | Color format |
---|---|---|
GBlur |
Introduces Gaussian Blur on image. (corresponds to the GBlur plugin). |
|
Fan |
A filter to attenuate regular frequency noise or (white or black) streaks (corresponds to the FanFilter plugin). |
|
MBlur |
Introduces motion or focus blur on image.(F2QBlur of FQPlus operates in frequency domain while this is in 2D image domain). Corresponds to the HBlur plugin. |
|
Median |
In a grid size of which adapts, noise is attenuated. (corresponds to the AdaptiveMedian plugin). |
|
minvar |
By minimising variance noise is attenuated. (corresponds to the DeNoise plugin) |
|
Morph |
Using morphology princeples image is 'dilate' or 'erode' or 'open' or 'close' or 'median' filtered (corresponds to the Morph plugin). |
|
Neutral |
Given a target image derived from input, learns to process to get similar results. (corresponds to the |
|
SaltPepper |
Removes Salt and Pepper noise spikes from image. (corresponds to the DeSaltPepper plugin). |
|
SegAmp |
Smooths and sharpens image using watershed algorithm for segmentation(corresponds to the SegmentedAmp plugin). |
|
TweakHist |
Equalizes or matches Histogram. (corresponds to the HistogramAdjust plugin). |
|
Veed |
A gentle filter to remove either green or blue sheen seen in some videos (corresponds to the DeVeed plugin). |
Changelog
Version Date Changes
2018/09/17 - Latest release 2017/08/25 - Add Fan and Neural functions - Fan is improved version of FanFilter (of 2.5) and works better. 2017/04/04 - Add Morph and Median functions 2017/01/02 - Initial release
Back to External Filters ←