IMcTransformFlip3D Method
|
|
This function flips image in 3D or rotates by 90,180 or 270 degrees.
Namespace:
MediaCy.IQL.Operations
Assembly:
MediaCy.IQL.Operations (in MediaCy.IQL.Operations.dll) Version: 10.0.6912.0
SyntaxFunction Flip3D (
Optional outaxisX As mcFlip3DAxes = mcFlip3DAxes.mcaxX,
Optional outaxisY As mcFlip3DAxes = mcFlip3DAxes.mcaxY,
Optional outaxisZ As mcFlip3DAxes = mcFlip3DAxes.mcaxZ,
<OptionalAttribute> vSourceImg As Object,
Optional Flags As mcImageCreateFlags = mcImageCreateFlags.mcicfDefault
) As McImage
Parameters
- outaxisX (Optional)
- Type: MediaCy.IQL.OperationsmcFlip3DAxes
defines what axis X of the output image will represent - outaxisY (Optional)
- Type: MediaCy.IQL.OperationsmcFlip3DAxes
defines what axis Y of the output image will represent - outaxisZ (Optional)
- Type: MediaCy.IQL.OperationsmcFlip3DAxes
defines what axis Z of the output image will represent - vSourceImg (Optional)
- Type: SystemObject
Optional source image, operator applies to parent image
when parameter is omitted. - Flags (Optional)
- Type: MediaCy.IQL.EnginemcImageCreateFlags
Optional image creation flags for the new image. By default the
value is zero, which creates a visible image that is part of the Images
collection. See mcImageCreateFlags for the list of supported flags.
Return Value
Type:
McImageA new McImage
RemarksThe input parameters outaxisX, outaxisY and outaxisZ define how the output axes
mapped to the input axes. The function can be used to create ZY and XZ projections of sequences.
See Also