VariableBlur/AverageBlur: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
mNo edit summary
m minor formatting
 
Line 1: Line 1:
[[Category:Plugin_Filters]]
{{FilterCat4|External_filters|Plugin_functions|Adjustment_filters|Blurring}}
[[Category:Blurring]]
'''Back to [[VariableBlur#Filters|VariableBlur]] ←'''
'''Back to [[VariableBlur#Filters|VariableBlur]] ←'''
== Description ==
== Description ==
: AverageBlur works by taking the average value of the pixels inside the radius.  
AverageBlur works by taking the average value of the pixels inside the radius.  
<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: [[YV12]]
* Supported color formats: [[YV12]]
<br>
<br>


Line 15: Line 14:
<br>
<br>
::{{Par2||clip| }}
::{{Par2||clip| }}
:::Input clip
:::Input clip.
<br>
<br>
::{{Par2|radY|int|3}}
::{{Par2|radY|int|3}}
Line 36: Line 35:
  AverageBlur(radY=3, radC=3, Y=3, U=2, V=2)
  AverageBlur(radY=3, radC=3, Y=3, U=2, V=2)


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

Latest revision as of 11:57, 21 September 2014

Back to VariableBlur ←

Description

AverageBlur works by taking the average value of the pixels inside the radius.

Requirements


AverageBlur (clip, int "radY", int "radC", int "Y", int "U", int "V")


clip   =
Input clip.


int  radY = 3
int  radC = 3
radius of the kernel.
radY for luma, radC for chroma (U/V).


int  Y = 3
int  U = 2
int  V = 2
Controls which planes the filter is applied to:
  • 3 : corresponding plane will be filtered
  • 2 : corresponding plane will be copied from the source
  • 1 : corresponding plane will be ignored
  • from 0 to -255 : corresponding plane will be assigned the absolute value.


Examples

AverageBlur with default values:

AviSource("Blah.avi")
AverageBlur(radY=3, radC=3, Y=3, U=2, V=2)




Back to VariableBlur ←