IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
This feature is only supported by specific uEye+ cameras.
•U3-368xXCP Rev. 1.2
•U3-368xXLE Rev. 1.2
•U3-368xXLS Rev. 1.2
Specifies the control of hot pixel correction. For the cameras mentioned above, hot pixel correction is always controlled in the sensor.
Name |
HotPixelCorrectionSelector |
Category |
|
Interface |
Enumeration |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
Region0 Sensor |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•Region0: Selected features control region0 hot pixel correction.
•Sensor: Selected features control sensor hot pixel correction.
Code example
C++
// Determine the current entry of HotPixelCorrectionSelector
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("HotPixelCorrectionSelector")->CurrentEntry()->SymbolicValue();
// Get a list of all available entries of HotPixelCorrectionSelector
auto allEntries = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("HotPixelCorrectionSelector")->Entries();
std::vector<std::shared_ptr<peak::core::nodes::EnumerationEntryNode>> availableEntries;
for(const auto & entry : allEntries)
{
if ((entry->AccessStatus()!=peak::core::nodes::NodeAccessStatus::NotAvailable)
&& (entry->AccessStatus()!=peak::core::nodes::NodeAccessStatus::NotImplemented))
{
availableEntries.emplace_back(entry);
}
}
C#
// Determine the current entry of HotPixelCorrectionSelector
string value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("HotPixelCorrectionSelector").CurrentEntry().SymbolicValue();
// Get a list of all available entries of HotPixelCorrectionSelector
allEntries = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("HotPixelCorrectionSelector").Entries();
List<string> availableEntries = new List<string>();
for(int i = 0; i < allEntries.Count(); ++i)
{
if ((allEntries[i].AccessStatus() != IDSImaging.Peak.API.Core.Nodes.NodeAccessStatus.NotAvailable)
&& (allEntries[i].AccessStatus() != IDSImaging.Peak.API.Core.Nodes.NodeAccessStatus.NotImplemented))
{
availableEntries.Add(allEntries[i].SymbolicValue());
}
}
Python
# Determine the current entry of HotPixelCorrectionSelector (str)
value = nodeMapRemoteDevice.FindNode("HotPixelCorrectionSelector").CurrentEntry().SymbolicValue()
# Get a list of all available entries of HotPixelCorrectionSelector
allEntries = nodeMapRemoteDevice.FindNode("HotPixelCorrectionSelector").Entries()
availableEntries = []
for entry in allEntries:
if (entry.AccessStatus() != ids_peak.NodeAccessStatus_NotAvailable
and entry.AccessStatus() != ids_peak.NodeAccessStatus_NotImplemented):
availableEntries.append(entry.SymbolicValue())