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. |
Method | Description | |
---|---|---|
CalculateNewImageSize ( UnmanagedImage sourceData ) : |
Calculates new image size.
|
|
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void |
Process the filter on the specified image.
|
Method | Description | |
---|---|---|
CheckSourceFormat ( PixelFormat pixelFormat ) : void |
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 |
protected abstract CalculateNewImageSize ( UnmanagedImage sourceData ) : |
||
sourceData | UnmanagedImage | Source image data. |
return |
protected abstract ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void | ||
sourceData | UnmanagedImage | Source image data. |
destinationData | UnmanagedImage | Destination image data. |
return | void |