Please enable JavaScript to view this site.

IDS peak 2.8.0 / uEye+ firmware 3.33

Flip vertically the image sent by the camera. The ROI (region of interest) is applied after the flipping.

Name

ReverseY

Category

ImageFormatControl

Interface

Boolean

Access

Read/Write

Unit

-

Visibility

Expert

Values

True

False

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

-

Values description

True: Vertical flipping is enabled.

False: Vertical flipping is disabled.

hint_info

The access changes to read-only during an acquisition.

hint_info

For some sensors, ReverseY causes a change of the colored PixelFormat, e.g. BayerRG to BayerGB. Transfer the PixelFormat as chunk via ChunkSelector and ChunkEnable to be able to refer to it when you work with the image later on.

hint_info

For some sensors, ReverseY shifts the mirrored image downwards by one pixel.

Code example

C++

// Determine the current status of ReverseY
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("ReverseY")->Value();
// Set ReverseY to false
nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("ReverseY")->SetValue(false);

C#

// Determine the current status of ReverseY
bool value = nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("ReverseY").Value();
// Set ReverseY to false
nodeMapRemoteDevice.FindNode<peak.core.nodes.BooleanNode>("ReverseY").SetValue(false);

Python

# Determine the current status of ReverseY (bool)
value = nodeMapRemoteDevice.FindNode("ReverseY").Value()
# Set ReverseY to false (bool)
nodeMapRemoteDevice.FindNode("ReverseY").SetValue(False)

© 2024 IDS Imaging Development Systems GmbH