SmoothUV/SmoothUV
From Avisynth wiki
(Difference between revisions)
(SmoothUV) |
m (category) |
||
Line 1: | Line 1: | ||
+ | [[Category:Plugin_Filters]] | ||
+ | [[Category:Rainbow & Dot Crawl Removal]] | ||
'''Back to [[SmoothUV]] ←''' | '''Back to [[SmoothUV]] ←''' | ||
-------------------------------------------------------- | -------------------------------------------------------- |
Revision as of 00:26, 24 August 2014
Back to SmoothUV ←
Description
- A filter to reduce rainbows that works very similar to Smart Smoother IQ.
- This filter does not process the luma at all.
Syntax and Parameters
- SmoothUV (clip, int "radius", int "threshold", bool "field")
- int radius = 3
- Range: 1 to 7
- This option determines the size of the area over which blurring is possible.
- The bigger it is the slower the filter runs.
- Range: 1 to 7
- int radius = 3
- int threshold = 270
- Range: 0 to 450
- This option determines how much blurring is done. Use the lowest amount that removes your noise/artifacts.
- Note: This parameter is simply bypassed. Setting it to any valid value will not do anything.
- This option determines how much blurring is done. Use the lowest amount that removes your noise/artifacts.
- Range: 0 to 450
- int threshold = 270
- bool field = false
- False is for progressive input, true is for interlaced input.
- bool field = false
Examples
SmoothUV with default settings:
AviSource("Blah.avi") SmoothUV(radius=3, threshold=270, field=false)
SmoothUV with default settings is identical to:
AviSource("Blah.avi") SSHiQ(rY=1, rC=3, tY=-1, tC=270, str=255, HQY=false, HQC=false, field=false)
Back to SmoothUV ←