| Package | de.popforge.imageprocessing.filters.convolution |
| Class | public final class Blur |
| Inheritance | Blur NativeFilter |
Supported formats:
var filter: Blur = new Blur(); var video: WebCam = new WebCam( 160, 120 ); var image: Image = new Image( 160, 120, ImageFormat.RGB ); image.loadBitmapData( video.getCurrentFrame(), true ); filter.apply( image );
See also
| Method | Defined by | ||
|---|---|---|---|
|
Blur(blurX:Number = 4, blurY:Number = 4, quality:int = 1)
Creates a new Blur object.
| Blur | ||
![]() |
Applies the filter to the given Image object.
| NativeFilter | |
|
toString():String
Builds and returns a string containing the name of the class.
| Blur | ||
| Blur | () | constructor |
public function Blur(blurX:Number = 4, blurY:Number = 4, quality:int = 1)Creates a new Blur object.
ParametersblurX:Number (default = 4) — The amount to blur horizontally. Valid values are from 0 to 255.0 (floating-point value).
|
|
blurY:Number (default = 4) — The amount to blur vertically. Valid values are from 0 to 255.0 (floating-point value).
|
|
quality:int (default = 1) — The number of times to apply the filter. You can specify the quality using the BitmapFilterQuality constants.
|
| toString | () | method |
public override function toString():StringBuilds and returns a string containing the name of the class.
ReturnsString — A string containing the name of the class.
|