DeStripe
From Avisynth wiki
(Difference between revisions)
(DeStripe) |
m (category typo) |
||
Line 1: | Line 1: | ||
− | {{FilterCat4|External_filters| | + | {{FilterCat4|External_filters|Scripts|Restoration_filters|Luma_equalization}} |
{{Filter3 | {{Filter3 | ||
| *.mp4 guy | | *.mp4 guy |
Revision as of 14:36, 17 November 2015
Abstract | |
---|---|
Author | *.mp4 guy |
Version | 14/06/2010 |
Download | DeStripe script |
Category | Luma Equalization |
License | |
Discussion | Doom9 Thread |
Contents |
Description
A script to reduce stripes.
Requirements
- AviSynth 2.5.8 or greater
- Progressive input only
- Supported color formats: YV12
Required Plugins
Additional planar colorspaces are supported when using AviSynth 2.6 and corresponding MaskTools2.
Syntax and Parameters
- DeStripe (clip c, int "rad", int "offset", int "thr")
- clip =
- Input clip
- clip =
- int rad = 2
- rad is how big are the stripes; range: 1 to 5.
- int rad = 2
- int offset = 0
- offset is how far apart the stripes; range: 0 to 4.
- int offset = 0
- int thr = 256
- thr is the threshold; range: 1 to a big number (~1000).
- int thr = 256
Examples
DeStripe with default settings:
AviSource("blah.avi") DeStripe(rad=2, offset=0, thr=256)
Changelog
Version Date(D/M/Y) Changes
14/06/2010 - Initial release
External Links
- Doom9 Forum - Reducing Kinescope Moire.
Back to External Filters ←