Method | Description | |
---|---|---|
Convolution ( int kernel ) : System |
Initializes a new instance of the Convolution class. Using this constructor (specifying only convolution kernel), |
|
Convolution ( int kernel, int divisor ) : System |
Initializes a new instance of the Convolution class.
|
Method | Description | |
---|---|---|
Convolution ( ) : System |
Initializes a new instance of the Convolution class.
|
|
ProcessFilter ( UnmanagedImage source, UnmanagedImage destination, |
Process the filter on the specified image.
|
Method | Description | |
---|---|---|
Process16bppImage ( ushort baseSrc, ushort baseDst, int srcStride, int dstStride, int startX, int startY, int stopX, int stopY ) : void | ||
Process24bppImage ( byte src, byte dst, int srcStride, int dstStride, int srcOffset, int dstOffset, int startX, int startY, int stopX, int stopY, int pixelSize ) : void | ||
Process32bppImage ( byte src, byte dst, int srcStride, int dstStride, int srcOffset, int dstOffset, int startX, int startY, int stopX, int stopY ) : void | ||
Process48bppImage ( ushort baseSrc, ushort baseDst, int srcStride, int dstStride, int startX, int startY, int stopX, int stopY, int pixelSize ) : void | ||
Process64bppImage ( ushort baseSrc, ushort baseDst, int srcStride, int dstStride, int startX, int startY, int stopX, int stopY ) : void | ||
Process8bppImage ( byte src, byte dst, int srcStride, int dstStride, int srcOffset, int dstOffset, int startX, int startY, int stopX, int stopY ) : void |
public Convolution ( int kernel ) : System | ||
kernel | int | Convolution kernel. |
return | System |
public Convolution ( int kernel, int divisor ) : System | ||
kernel | int | Convolution kernel. |
divisor | int | Divisor, used used to divide weighted sum. |
return | System |
protected ProcessFilter ( UnmanagedImage source, UnmanagedImage destination, |
||
source | UnmanagedImage | Source image data. |
destination | UnmanagedImage | Destination image data. |
rect | Image rectangle for processing by the filter. | |
return | void |