VCreateCalibration Method

Description
Creates a new vision calibration in the current project.

Syntax
Sub VCreateCalibration (CameraNumber As Integer, CalibName As String)
Sub VCreateCalibration (CameraNumber As Integer, CalibName As String,CopyCalibName As String)

Parameters

  • CameraNumber
    An integer expression indicating the number of the camera to calibrate.
  • CalibName
    A string expression indicating the vision calibration name to be created.
  • CopyCalibName
    Optional. A string expression indicating the vision calibration name to be copied.

See Also
VCreateObject Method, VCreateSequence Method, VDeleteCalibration Method

VCreateCalibration Example
VB Example:

m_spel.VCreateCalibration(1, "mycal")  

C# Example:

m_spel.VCreateCalibration(1, "mycal");