IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Resets the number of all values that can be selected in PtpStatisticsSelector to 0.
Name |
PtpResetStatistics |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Guru |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute PtpResetStatistics
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("PtpResetStatistics")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("PtpResetStatistics")->WaitUntilDone();
C#
// Execute PtpResetStatistics
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("PtpResetStatistics").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("PtpResetStatistics").WaitUntilDone();
Python
# Execute PtpResetStatistics
nodeMapRemoteDevice.FindNode("PtpResetStatistics").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("PtpResetStatistics").WaitUntilDone()