| Package | de.popforge.imageprocessing.filters.convolution |
| Class | public final class Edges |
| Inheritance | Edges Convolution NativeFilter |
Divisor is 2.2. The convolution matrix is static.
[ 0, 2, 0 ]
[ 2, -8, 2 ]
[ 0, 2, 0 ]
Supported formats:
var filter: Edges = new Edges(); var video: WebCam = new WebCam( 160, 120 ); var image: Image = new Image( 160, 120, ImageFormat.GRAYSCALE ); image.loadBitmapData( video.getCurrentFrame(), true ); filter.apply( image );
| Method | Defined by | ||
|---|---|---|---|
|
Edges()
Creates a new Edges object.
| Edges | ||
![]() |
Applies the filter to the given Image object.
| NativeFilter | |
|
toString():String
Builds and returns a string containing the name of the class.
| Edges | ||
| Edges | () | constructor |
public function Edges()Creates a new Edges object.
| 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.
|