Метод | Описание | |
---|---|---|
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. |
Метод | Описание | |
---|---|---|
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData, |
Process the filter on the specified image.
|
Метод | Описание | |
---|---|---|
CheckSourceFormat ( PixelFormat pixelFormat ) : void |
public Apply ( |
||
image | Source image to apply filter to. | |
Результат |
public Apply ( |
||
imageData | Source image to apply filter to. | |
Результат |
public Apply ( UnmanagedImage image ) : UnmanagedImage | ||
image | UnmanagedImage | Source image in unmanaged memory to apply filter to. |
Результат | 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. |
Результат | void |
public ApplyInPlace ( |
||
image | Image to apply filter to. | |
Результат | void |
public ApplyInPlace ( |
||
image | Image to apply filter to. | |
rect | Image rectangle for processing by the filter. | |
Результат | void |
public ApplyInPlace ( |
||
imageData | Image data to apply filter to. | |
Результат | void |
public ApplyInPlace ( |
||
imageData | Image data to apply filter to. | |
rect | Image rectangle for processing by the filter. | |
Результат | void |
public ApplyInPlace ( UnmanagedImage image ) : void | ||
image | UnmanagedImage | Unmanaged image to apply filter to. |
Результат | void |
public ApplyInPlace ( UnmanagedImage image, |
||
image | UnmanagedImage | Unmanaged image to apply filter to. |
rect | Image rectangle for processing by the filter. | |
Результат | void |
protected abstract ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData, |
||
sourceData | UnmanagedImage | Source image data. |
destinationData | UnmanagedImage | Destination image data. |
rect | Image rectangle for processing by the filter. | |
Результат | void |