Please enable JavaScript to view this site.

IDS peak 2.8.0 / uEye+ firmware 3.33

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

Name

ReverseX

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: Horizontal flipping is enabled.

False: Horizontal flipping is disabled.

hint_info

The access changes to read-only during an acquisition.

hint_info

For some sensors, ReverseX causes a change of the colored PixelFormat, e.g. BayerRG to BayerGR. 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, ReverseX shifts the mirrored image one pixel to the right.

Code example

C++

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

C#

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

Python

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

© 2024 IDS Imaging Development Systems GmbH