Click or drag to resize

McOperations Interface

Performs arithmetic and logical operations.

Namespace:  MediaCy.IQL.Operations
Assembly:  MediaCy.IQL.Operations (in MediaCy.IQL.Operations.dll) Version: 10.0.6912.0
Syntax
VB
Public Interface McOperations
	Inherits IMcOperations2
Remarks
Most of the methods exposed by this class take both images and numbers as their first parameter so that the operations can be between two images or between an image and a constant. When used as the McImage.Op operator, this operator uses its parent McImage as both source for the left-hand operand and destination for the result (unless a different source image is provided in the optional second parameter). If another left-hand operand image is passed as a parameter to one of its methods, it is used as the source of the left-hand operand, and the result is written back to the operator's parent image. An instance of McOperations can also be created independently using %CreateOperator%. In this case the operator may not have a parent and the parent image to be used as source and destination must be supplied in the vOperand1 parameter.
See Also