RgTools/ForwardClense: Difference between revisions
From Avisynth wiki
Jump to navigationJump to search
m category |
m minor formatting |
||
| Line 1: | Line 1: | ||
{{FilterCat4|External_filters|Plugin_functions|Denoisers|Temporal_denoisers}} | |||
'''Back to [[RgTools#Filters|RgTools]] ←''' | '''Back to [[RgTools#Filters|RgTools]] ←''' | ||
== Description == | == Description == | ||
Modified version of <tt>Clense</tt> that works on current and next frames. | |||
<br> | |||
<br> | <br> | ||
== Requirements == | == Requirements == | ||
* [[FAQ_different_types_content#How_do_I_recognize_progressive.2C_interlaced.2C_telecined.2C_hybrid_and_blended_content.3F|Progressive]] input only | |||
* Supported color formats: [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]] | |||
<br> | <br> | ||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
:{{Template:FuncDef|ForwardClense (''clip'', ''bool'' "grey")}} | :{{Template:FuncDef|ForwardClense (''clip'', ''bool'' "grey")}} | ||
<br> | |||
::{{Par2| |clip| }} | |||
:::Input clip must be [[planar]]. | |||
<br> | <br> | ||
::{{Par2|grey|bool|false}} | ::{{Par2|grey|bool|false}} | ||
| Line 23: | Line 27: | ||
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
ForwardClense(grey=false) | ForwardClense(grey=false) | ||
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[RgTools#Filters|RgTools]] ←''' | '''Back to [[RgTools#Filters|RgTools]] ←''' | ||
Revision as of 11:41, 21 September 2014
Back to RgTools ←
Description
Modified version of Clense that works on current and next frames.
Requirements
- ForwardClense (clip, bool "grey")
- clip =
- Input clip must be planar.
- clip =
- bool grey = false
- If true, chroma will not be processed nor copied.
- bool grey = false
- Note: planar and cache parameters from the original ForwardClense are not implemented.
Examples
ForwardClense with default values:
AviSource("Blah.avi") ForwardClense(grey=false)
Back to RgTools ←