AdaptiveMedian
From Avisynth wiki
(Difference between revisions)
(major cleanup) |
m (→Requirements: AviSynth 2.6) |
||
Line 16: | Line 16: | ||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
− | *AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2 | + | *AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ 2.6.0 or greater] |
* <!-- color formats -->Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[YV12]], <span style="color:red">*</span>[[YV16]], <span style="color:red">*</span>[[YV24]], <span style="color:red">*</span>[[YV411]], <span style="color:red">*</span>[[Y8]] | * <!-- color formats -->Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[YV12]], <span style="color:red">*</span>[[YV16]], <span style="color:red">*</span>[[YV24]], <span style="color:red">*</span>[[YV411]], <span style="color:red">*</span>[[Y8]] | ||
: <span style="color:red">*</span> Not available in AviSynth 2.5.8. | : <span style="color:red">*</span> Not available in AviSynth 2.5.8. |
Revision as of 10:24, 31 May 2015
Abstract | |
---|---|
Author | V.C.Mohan |
Version | 1.0.0.0.0 |
Download |
|
Category | External filters |
License | GPLv2 |
Discussion | AdaptiveMedian |
Contents |
Description
Median value in an adaptive size grid is used to clean impulse noise, smooth out other noise and reduce excessive thinning of edges and for a full description click me.
Requirements
- AviSynth 2.5.8 or 2.6.0 or greater
- Supported color formats: RGB24, RGB32, YUY2, YV12, *YV16, *YV24, *YV411, *Y8
- * Not available in AviSynth 2.5.8.
Syntax and Parameters
- AdaptiveMedian (clip, int "sf", int "f", int "maxgrid", bool "yy", bool "uu", bool "vv")
- clip =
- Input clip.
- clip =
- int sf = 0
- Frame number from which this filter is to be applied.
- int sf = 0
- int ef = last frame of input clip
- Frame number up to which this filter is to be applied
- int ef = last frame of input clip
- int maxgrid = 5
- Grid size to get statistics can grow to this value starting from 3x3. Maximum value allowed is 9.
- int maxgrid = 5
Examples
AdaptivrMedian with default settings:
AviSource("example.avi") AdaptiveMedian(sf=0, maxgrid=5, yy=true, uu=false, vv=false)
Back to External Filters ←