IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Image height in pixels.
This information can be output as a chunk via the ChunkSelector. |
Name |
Height |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
px |
Visibility |
Beginner |
Values |
Camera specific |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
|
The access changes to read-only during an acquisition. |
Can only be changed if SequencerMode is "Off". |
Code example
C++
// Determine the current Height
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Height")->Value();
// Set Height to 1080
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Height")->SetValue(1080);
C#
// Determine the current Height
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Height").Value();
// Set Height to 1080
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Height").SetValue(1080);
Python
# Determine the current Height (int)
value = nodeMapRemoteDevice.FindNode("Height").Value()
# Set Height to 1080 (int)
nodeMapRemoteDevice.FindNode("Height").SetValue(1080)