This is the interface class for 3D calibration feature extractors.
This interface class is used in several Cog3DCameraCalibrator.Execute() overloads.
Namespace: Cognex.VisionPro3DAssembly: Cognex.VisionPro3D (in Cognex.VisionPro3D.dll) Version: 75.1.0.0
Syntax
The ICog3DCalibrationFeatureExtractor type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| Execute(ICogImage) |
Extract features from a calibration image.
| |
| Execute(List List ICogImage ) |
Extract features from a set of calibration images, acquired
from one or multiple cameras over different calibration plate poses.
The images are organized in a List, indexed by calibration plate pose.
Each item in the list is a List of images, indexed by camera.
It is expected that the fiducial defining the calibration plate's
origin is within the field of view.
The feature extraction is done by calling the Execute( ICogImage )
method for each calibration image.
The Execute( ICogImage ) method will be invoked on multiple threads
if the IsThreadSafe property is true.
|
Properties
| Name | Description | |
|---|---|---|
| IsThreadSafe |
Gets whether the implementation of the Execute(ICogImage) method is thread-safe.
thread-safety is required to allow multithreading within implementations
of the
Execute(List< List< ICogImage > >) method.
|
See Also