 
IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the physical pixel size in x direction. The unit of the size is micrometer (µm).
| Name | SensorPixelWidth | 
| Category | |
| Interface | Float | 
| Access | Read | 
| Unit | µm | 
| Visibility | Guru | 
| Values | Camera specific | 
| Standard | IDS | 
| Availability uEye+ | 
 | 
| Availability uEye | 
 | 
Code example
C++
// Determine the current SensorPixelWidth
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("SensorPixelWidth")->Value();
C#
// Determine the current SensorPixelWidth
double value = nodeMapRemoteDevice.FindNode<peak.core.nodes.FloatNode>("SensorPixelWidth").Value();
Python
# Determine the current SensorPixelWidth (float)
value = nodeMapRemoteDevice.FindNode("SensorPixelWidth").Value()