Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Vertical offset in pixels from the origin of the ROI to the selected sub-region.

hint_info

Only available when SubRegionFollowSource = "False".

Name

SubRegionOffsetY[SubRegionSelector]

Category

SubRegionControl

Interface

Integer

Access

Read/Write

Unit

-

Visibility

Expert

Values

0 ... (Height-SubRegionHeight)

Standard

IDS

Availability uEye+

icon-gev icon-u3v

Availability uEye

icon-ui-usb2

hint_info

uEye cameras: This feature is only supported by UI-1007XS Rev. 1.1 and UI-1007XS.

Code example

C++

// Before accessing SubRegionOffsetY, make sure SubRegionSelector is set correctly
// Set SubRegionSelector to "AutoFeatureBrightnessAuto"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("SubRegionSelector")->SetCurrentEntry("AutoFeatureBrightnessAuto");
// Determine the current SubRegionOffsetY
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SubRegionOffsetY")->Value();

C#

// Before accessing SubRegionOffsetY, make sure SubRegionSelector is set correctly
// Set SubRegionSelector to "AutoFeatureBrightnessAuto"
nodeMapRemoteDevice.FindNode<peak.core.nodes.EnumerationNode>("SubRegionSelector").SetCurrentEntry("AutoFeatureBrightnessAuto");
// Determine the current SubRegionOffsetY
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("SubRegionOffsetY").Value();

Python

# Before accessing SubRegionOffsetY, make sure SubRegionSelector is set correctly
# Set SubRegionSelector to "AutoFeatureBrightnessAuto" (str)
nodeMapRemoteDevice.FindNode("SubRegionSelector").SetCurrentEntry("AutoFeatureBrightnessAuto")
# Determine the current SubRegionOffsetY (int)
value = nodeMapRemoteDevice.FindNode("SubRegionOffsetY").Value()