AdaptiveMedian
From Avisynth wiki
(Difference between revisions)
m |
(→Examples) |
||
| Line 37: | Line 37: | ||
== Examples == | == Examples == | ||
| − | Median | + | |
| − | + | Median() | |
| − | Median(maxgrid= | + | |
| + | a = converttoYUY2() | ||
| + | Median(a, maxgrid=7, yy = false, uu = true, vv = true) | ||
| + | |||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters|External Filters]] ←''' | '''Back to [[External_filters|External Filters]] ←''' | ||
Revision as of 05:40, 18 June 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.
- 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
Median()
a = converttoYUY2() Median(a, maxgrid=7, yy = false, uu = true, vv = true)
Back to External Filters ←