RgTools/Clense: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m category
m minor formatting
Line 1: Line 1:
[[Category:Plugin_Filters]]
{{FilterCat4|External_filters|Plugin_functions|Denoisers|Temporal_denoisers}}
[[Category:Temporal_Denoisers]]
 
'''Back to [[RgTools#Filters|RgTools]] ←'''
'''Back to [[RgTools#Filters|RgTools]] ←'''
== Description ==
== Description ==
:{{Template:FuncDef|Clense}} is a Temporal median of three frames. Identical to [[MedianBlur2|MedianBlurTemporal(0,0,0,1)]] but a lot faster. Can be used as a building block for many fancy medians.  
{{Template:FuncDef|Clense}} is a Temporal median of three frames. Identical to [[MedianBlur2|MedianBlurTemporal(0,0,0,1)]] but a lot faster. Can be used as a building block for many fancy medians.  
<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  
* [[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]]
* Supported color formats: [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]]
<br>
<br>


Line 15: Line 16:
<br>
<br>
::{{Par2| |clip| }}
::{{Par2| |clip| }}
:::Mandatory input clip.
:::Input clip must be [[planar]].
<br>
<br>
::{{Par2|previous|clip| }}
::{{Par2|previous|clip| }}
Line 31: Line 32:
  Clense(grey=false)
  Clense(grey=false)


<br>
<br>
<br>
<br>
<br>
-----------------------------------------------
-----------------------------------------------
'''Back to [[RgTools#Filters|RgTools]] &larr;'''
'''Back to [[RgTools#Filters|RgTools]] &larr;'''

Revision as of 11:39, 21 September 2014


Back to RgTools

Description

Clense is a Temporal median of three frames. Identical to MedianBlurTemporal(0,0,0,1) but a lot faster. Can be used as a building block for many fancy medians.

Requirements


Clense (clip, clip "previous", clip "next", bool "grey")


clip   =
Input clip must be planar.


clip  previous =


clip  next =


bool  grey = false
If true, chroma will not be processed nor copied.


Note: reduceflicker, planar, and cache parameters from the original Clense are not implemented.


Examples

Clense with default values:

AviSource("Blah.avi")
Clense(grey=false)




Back to RgTools