CogImage16Range Constructor (Int32, Int32, ICog3DTransform)Cognex VisionPro 9.7
Construct a new instance of this class using the supplied RootFromSensor3D transform and allocating storage for the specified image size.

Namespace: Cognex.VisionPro
Assembly: Cognex.VisionPro.CorePlus (in Cognex.VisionPro.CorePlus.dll) Version: 73.0.0.0
Syntax

public CogImage16Range(
	int Width,
	int Height,
	ICog3DTransform RootFromSensor3D
)

Parameters

Width
Type: System Int32
Width of this image in pixels. Must be greater than zero.
Height
Type: System Int32
Height of this image in pixels. Must be greate than zero.
RootFromSensor3D
Type: Cognex.VisionPro3D ICog3DTransform
An ICog3DTransform that specifies the mapping from "Sensor3D" space to root space. May not be null.
Exceptions

ExceptionCondition
ArgumentOutOfRangeException If Width is less than 1.
ArgumentOutOfRangeException If Height is less than 1.
ArgumentNullException If RootFromSensor3D is null.
See Also