AdaptiveMedian

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(Updated "AdaptiveMedian" to Median. More compatibility with AviSynth+.)
m
Line 3: Line 3:
 
|[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan]
 
|[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan]
 
|17 Oct 2017
 
|17 Oct 2017
| [http://www.avisynth.nl/users/vcmohan/modPlus/modPlus.7z modPlus (includes Median filter)]
+
| [http://www.avisynth.nl/users/vcmohan/modPlus/modPlus.7z modPlus (Median filter)]
 
|4=External filters
 
|4=External filters
 
|5=[https://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
 
|5=[https://www.gnu.org/licenses/gpl-2.0.txt GPLv2]

Revision as of 18:11, 4 April 2018

Abstract
Author V.C.Mohan
Version 17 Oct 2017
Download modPlus (Median filter)
Category External filters
License GPLv2
Discussion AdaptiveMedian, modPlus update

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


Syntax and Parameters

Median (clip, int "maxgrid", bool "yy", bool "uu", bool "vv")


clip   =
Input clip.


int  maxgrid = 5
Grid size to get statistics can grow to this value starting from 3x3. Maximum value allowed is 9.


bool  yy = true
bool  uu = false
bool  vv = false
Choose which YUV planes to process.
  • True : don't process
  • False : process
By default only the luma plane (Y) is processed. If the input clip is RGB, then these parameters are simply ignored.


Examples

Median with default settings:

AviSource("example.avi")
Median(maxgrid=5, yy=true, uu=false, vv=false)




Back to External Filters

Personal tools