IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
This feature is only supported by specific uEye+ cameras.
•U3-36LxXC
Controls the sharpness of the image.
Name |
SharpnessEnhancement |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
% |
Visibility |
Beginner |
Values |
0 … 100 Default value: 50 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•0: Sharpness enhancement is disabled.
•1 ... 100: Sharpness enhancement is enabled. The higher the value, the higher the sharpening.
Code example
C++
// Determine the current SharpnessEnhancement
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SharpnessEnhancement")->Value();
// Set SharpnessEnhancement to 60
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("SharpnessEnhancement")->SetValue(60);
C#
// Determine the current SharpnessEnhancement
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("SharpnessEnhancement").Value();
// Set SharpnessEnhancement to 60
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("SharpnessEnhancement").SetValue(60);
Python
# Determine the current SharpnessEnhancement (int)
value = nodeMapRemoteDevice.FindNode("SharpnessEnhancement").Value()
# Set SharpnessEnhancement to 60 (int)
nodeMapRemoteDevice.FindNode("SharpnessEnhancement").SetValue(60)