Please enable JavaScript to view this site.

IDS peak 2.10.0 / uEye+ firmware 3.34

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

Vertical offset in pixels from the origin to the ROI (region of interest). OffsetY can only be greater than "0" if Height < HeightMax.

hint_info

This information can be output as a chunk via the ChunkSelector.

Name

OffsetY

Category

ImageFormatControl

Interface

Integer

Access

Read/Write

Unit

px

Visibility

Beginner

Values

≥ 0

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

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

hint_info

Depending on the camera model the access might change to read-only during an acquisition.

hint_info

Can only be changed if SequencerMode is "Off".

hint_info

Note for uEye cameras (UI models)

From IDS peak 2.8 on, fast moving of the ROI is used automatically if the camera model supports this feature and HotpixelCorrectionMode = "Off". The image acquisition is not stopped when the ROI is moved fast. This means that further images with the old ROI position can be transferred after command call if they are still in the buffer.

Code example

C++

// For using OffsetY set Height to 400
// Set Height to 400
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Height")->SetValue(400);
// Determine the current OffsetY
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("OffsetY")->Value();
// Set OffsetY to 100
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("OffsetY")->SetValue(100);

C#

// For using OffsetY set Height to 400
// Set Height to 400
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Height").SetValue(400);
// Determine the current OffsetY
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("OffsetY").Value();
// Set OffsetY to 100
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("OffsetY").SetValue(100);

Python

# For using OffsetY set Height to 400
# Set Height to 400 (int)
nodeMapRemoteDevice.FindNode("Height").SetValue(400)
# Determine the current OffsetY (int)
value = nodeMapRemoteDevice.FindNode("OffsetY").Value()
# Set OffsetY to 100 (int)
nodeMapRemoteDevice.FindNode("OffsetY").SetValue(100)

© 2024 IDS Imaging Development Systems GmbH