IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Image width in pixels.
If you change the image size, you must stop image acquisition and recreate the buffers, see Starting and stopping image acquisition and Preparing image acquisition: create buffer.
This information can be output as a chunk via the ChunkSelector. |
Name |
Width |
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 Width
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Width")->Value();
// Set Width to 1440
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Width")->SetValue(1440);
C#
// Determine the current Width
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Width").Value();
// Set Width to 1440
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Width").SetValue(1440);
Python
# Determine the current Width (int)
value = nodeMapRemoteDevice.FindNode("Width").Value()
# Set Width to 1440 (int)
nodeMapRemoteDevice.FindNode("Width").SetValue(1440)