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.

This feature is only supported by specific uEye+ cameras.

U3-36LxXC

This feature is only supported by specific uEye cameras.

UI-149x/UI-549x

UI-124x/UI-324x/UI-524x

UI-125x/UI-325x/UI-525x

Defines which scaler engine is controlled by the ScalingHorizontal and ScalingVertical features.

Name

ScalingSelector

Category

ImageFormatControl

Interface

Enumeration

Access

Read/Write

Unit

-

Visibility

Expert

Values

Region0

Sensor

Standard

IDS

Availability uEye+

icon-u3v

Availability uEye

icon-ui-gige icon-ui-usb2 icon-ui-usb3

Values description

Region0: Selected features control Region0 scaler (ISP scaler). The sensor speed does not increase with Region0 scaler.

Sensor: Selected features control sensor scaler.

Code example

C++

// Determine the current entry of ScalingSelector
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("ScalingSelector")->CurrentEntry()->SymbolicValue();
// Get a list of all available entries of ScalingSelector
auto allEntries = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("ScalingSelector")->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);
  }
}
// Set ScalingSelector to "Sensor"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("ScalingSelector")->SetCurrentEntry("Sensor");

C#

// Determine the current entry of ScalingSelector
string value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("ScalingSelector").CurrentEntry().SymbolicValue();
// Get a list of all available entries of ScalingSelector
allEntries = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("ScalingSelector").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());
  }
}
// Set ScalingSelector to "Sensor"
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("ScalingSelector").SetCurrentEntry("Sensor");

Python

# Determine the current entry of ScalingSelector (str)
value = nodeMapRemoteDevice.FindNode("ScalingSelector").CurrentEntry().SymbolicValue()
# Get a list of all available entries of ScalingSelector
allEntries = nodeMapRemoteDevice.FindNode("ScalingSelector").Entries()
availableEntries = []
for entry in allEntries:
  if (entry.AccessStatus() != ids_peak.NodeAccessStatus_NotAvailable
          and entry.AccessStatus() != ids_peak.NodeAccessStatus_NotImplemented):
      availableEntries.append(entry.SymbolicValue())
 
# Set ScalingSelector to "Sensor" (str)
nodeMapRemoteDevice.FindNode("ScalingSelector").SetCurrentEntry("Sensor")

© 2026 IDS Imaging Development Systems GmbH