Method | Description | |
---|---|---|
Apply ( |
Apply filter to an image. The method keeps the source image unchanged and returns the result of image processing filter as new image. |
|
Apply ( |
Apply filter to an image. The filter accepts bitmap data as input and returns the result of image processing filter as new image. The source image data are kept unchanged. |
|
Apply ( UnmanagedImage image ) : UnmanagedImage |
Apply filter to an image in unmanaged memory. The method keeps the source image unchanged and returns the result of image processing filter as new image. |
|
Apply ( UnmanagedImage sourceImage, UnmanagedImage destinationImage ) : void |
Apply filter to an image in unmanaged memory. The method keeps the source image unchanged and puts result of image processing into destination image. |
|
ApplyInPlace ( |
Apply filter to an image. The method applies the filter directly to the provided source image. |
|
ApplyInPlace ( |
Apply filter to an image or its part. The method applies the filter directly to the provided source image. |
|
ApplyInPlace ( |
Apply filter to an image. The method applies the filter directly to the provided source image. |
|
ApplyInPlace ( |
Apply filter to an image or its part. The method applies the filter directly to the provided source image. |
|
ApplyInPlace ( UnmanagedImage image ) : void |
Apply filter to an unmanaged image. The method applies the filter directly to the provided source unmanaged image. |
|
ApplyInPlace ( UnmanagedImage image, |
Apply filter to an unmanaged image or its part. The method applies the filter directly to the provided source image. |
|
Closing ( ) : System |
Initializes a new instance of the Closing class. Initializes new instance of the Closing class using default structuring element for both Erosion and Dilatation classes - 3x3 structuring element with all elements equal to 1. |
|
Closing ( short se ) : System |
Initializes a new instance of the Closing class. See documentation to Erosion and Dilatation classes for information about structuring element constraints. |
public Apply ( |
||
image | Source image to apply filter to. | |
return |
public Apply ( |
||
imageData | Source image to apply filter to. | |
return |
public Apply ( UnmanagedImage image ) : UnmanagedImage | ||
image | UnmanagedImage | Source image in unmanaged memory to apply filter to. |
return | UnmanagedImage |
public Apply ( UnmanagedImage sourceImage, UnmanagedImage destinationImage ) : void | ||
sourceImage | UnmanagedImage | Source image in unmanaged memory to apply filter to. |
destinationImage | UnmanagedImage | Destination image in unmanaged memory to put result into. |
return | void |
public ApplyInPlace ( |
||
image | Image to apply filter to. | |
return | void |
public ApplyInPlace ( |
||
image | Image to apply filter to. | |
rect | Image rectangle for processing by the filter. | |
return | void |
public ApplyInPlace ( |
||
imageData | Image data to apply filter to. | |
return | void |
public ApplyInPlace ( |
||
imageData | Image data to apply filter to. | |
rect | Image rectangle for processing by the filter. | |
return | void |
public ApplyInPlace ( UnmanagedImage image ) : void | ||
image | UnmanagedImage | Unmanaged image to apply filter to. |
return | void |
public ApplyInPlace ( UnmanagedImage image, |
||
image | UnmanagedImage | Unmanaged image to apply filter to. |
rect | Image rectangle for processing by the filter. | |
return | void |
public Closing ( short se ) : System | ||
se | short | Structuring element. |
return | System |