IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Starts the acquisition of the camera. The number of captured images is specified by AcquisitionMode.
Name |
AcquisitionStart |
Category |
|
Interface |
Command |
Access |
(Read)/Write |
Unit |
- |
Visibility |
Beginner |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code example
C++
// Execute AcquisitionStart
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("AcquisitionStart")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("AcquisitionStart")->WaitUntilDone();
C#
// Execute AcquisitionStart
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("AcquisitionStart").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("AcquisitionStart").WaitUntilDone();
Python
# Execute AcquisitionStart
nodeMapRemoteDevice.FindNode("AcquisitionStart").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("AcquisitionStart").WaitUntilDone()