Please enable JavaScript to view this site.

IDS peak 2.20.0 / uEye+ firmware 3.80

IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.

Selects the data source region of the sensor for the 3D extraction module. Typically, these are sensor regions, but it could also be another processing module.

Name

Scan3dExtractionSource[Scan3dExtractionSelector]

Category

Scan3dControl

Interface

Enumeration

Access

Read

Unit

-

Visibility

Expert

Values

Region0

Standard

SFNC

Availability uEye+

icon-gev

Availability uEye

-

Values description

Region0: Data comes from Region0 of the sensor.

Code example

C++

// Determine the current entry of Scan3dExtractionSource
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("Scan3dExtractionSource")->CurrentEntry()->SymbolicValue();
// Get a list of all available entries of Scan3dExtractionSource
auto allEntries = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("Scan3dExtractionSource")->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 Scan3dExtractionSource
string value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("Scan3dExtractionSource").CurrentEntry().SymbolicValue();
// Get a list of all available entries of Scan3dExtractionSource
allEntries = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("Scan3dExtractionSource").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 Scan3dExtractionSource (str)
value = nodeMapRemoteDevice.FindNode("Scan3dExtractionSource").CurrentEntry().SymbolicValue()
# Get a list of all available entries of Scan3dExtractionSource
allEntries = nodeMapRemoteDevice.FindNode("Scan3dExtractionSource").Entries()
availableEntries = []
for entry in allEntries:
  if (entry.AccessStatus() != ids_peak.NodeAccessStatus_NotAvailable
          and entry.AccessStatus() != ids_peak.NodeAccessStatus_NotImplemented):
      availableEntries.append(entry.SymbolicValue())

© 2026 IDS Imaging Development Systems GmbH