Description
Process one line.
-
Return Type
-
None
-
Syntax
-
object.Process vLinesIn, vLineOut
The Process Method syntax has these parts: |
| object | An expression evaluating to an object of type McFilterLine. | | vLinesIn | Required. A Variant value. An array of image lines, as big as the height of the Kernel.
| | vLineOut | Required. A Variant value. The output line as an array of pixels.
| Remarks
This mehod is called by Custom once for each line. The first parameter vLinesIn is an array of lines, each line being an array of pixels. The implementation of this method should change the value of the pixels in vLineOut, using the McKernel passed to Initialize and the values of the pixels in vLinesIn.
|