Neo TMedian
From Avisynth wiki
(Difference between revisions)
(neo_tmedian) |
m (→Examples: typo) |
||
Line 41: | Line 41: | ||
neo_tmedian with default settings: | neo_tmedian with default settings: | ||
[[AviSource]]("blah.avi") | [[AviSource]]("blah.avi") | ||
− | neo_tmedian( | + | neo_tmedian(radius=1, y=3, u=3, v=3) |
<br> | <br> | ||
+ | |||
== Changelog == | == Changelog == | ||
Version Date Changes<br> | Version Date Changes<br> |
Latest revision as of 21:20, 6 February 2023
Abstract | |
---|---|
Author | MeteorRain |
Version | r2 |
Download | neo_TMedian_r2.7z |
Category | Blurring |
License | MIT |
Discussion |
Contents |
[edit] Description
neo_TMedian is a temporal denoising filter. It replaces every pixel with the median of its temporal neighbourhood.
[edit] Requirements
[edit] Syntax and Parameters
- neo_tmedian (clip, int "radius", int "y", int "u", int "v")
- clip =
- Input clip. Currently supporting 8..16 bit integer and 32 bit float format.
- clip =
- int radius = 1
- Neighbor frames radius. SIMD optimization supports up to 6.
- Default: 1
- int radius = 1
- int y = 3
- int u = 3
- int v = 3
- Whether a plane is to be filtered.
- 1 - Do not touch, leaving garbage data
- 2 - Copy from origin
- 3 - Process
- Default: 3
- Whether a plane is to be filtered.
- int y = 3
[edit] Examples
neo_tmedian with default settings:
AviSource("blah.avi") neo_tmedian(radius=1, y=3, u=3, v=3)
[edit] Changelog
Version Date Changes
r2 2021/09/27 - Fixed processing of Y clips. (AVS) - Updated dual synth wrapper. - Fixed Linux build. r1 2020/04/11 - Initial release.
[edit] External Links
- GitHub - source code repository.
Back to External Filters ←