메소드 | 설명 | |
---|---|---|
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. 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. |
메소드 | 설명 | |
---|---|---|
ProcessFilter ( UnmanagedImage image ) : void |
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 ( |
||
imageData | Image data to apply filter to. | |
리턴 | void |
public ApplyInPlace ( UnmanagedImage image ) : void | ||
image | UnmanagedImage | Unmanaged image to apply filter to. |
리턴 | void |
protected abstract ProcessFilter ( UnmanagedImage image ) : void | ||
image | UnmanagedImage | Source image data. |
리턴 | void |