MedianBlur/MedianBlurB

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "== Introduction == A binary median blur filter. It will take advantage of integer SSE if present. == Parameters == {{Template:FuncDef|MedianBlurB (int "radiusy", int "radiusu...")
 
(Parameters)
Line 9: Line 9:
 
::Specify the radius to use:  
 
::Specify the radius to use:  
  
:::*Default is 2.
 
 
:::*If the supplied radius is between -1 and -255 the plane is set to -radius.  
 
:::*If the supplied radius is between -1 and -255 the plane is set to -radius.  
 
:::*If the the radius is 0 the plane is copied unaltered.  
 
:::*If the the radius is 0 the plane is copied unaltered.  
 
:::*If the radius is less than -255 the plane isn't processed at all.
 
:::*If the radius is less than -255 the plane isn't processed at all.
 +
:::*Default is 2.
 
<br>
 
<br>
 
:{{Par|thresholdy, u, v|int|127}}
 
:{{Par|thresholdy, u, v|int|127}}

Revision as of 03:53, 17 October 2013

Introduction

A binary median blur filter. It will take advantage of integer SSE if present.

Parameters

MedianBlurB (int "radiusy", int "radiusu", int "radiusv", int "thresholdy", int "thresholdu", int "thresholdv", bool "calcborder")

radiusy, u, v int = 2
Specify the radius to use:
  • If the supplied radius is between -1 and -255 the plane is set to -radius.
  • If the the radius is 0 the plane is copied unaltered.
  • If the radius is less than -255 the plane isn't processed at all.
  • Default is 2.


thresholdy, u, v int = 127
  • Specify the threshold to use to make the mask. Afterwards the mask is median blured.
  • Default is 127.


calcborder bool = true
  • If true (default) the borders of the frame is filtered too.
  • If false then the border is copied from the source clip.
Personal tools