コンテンツにスキップ

彩度#

The Saturation camera feature allows you to adjust the appearance of all colors in your images in a single step.

機能を使用する#

彩度の調整#

彩度を調整すると、色の鮮やかさ(輝度)が変わります。例えば、彩度を高くすると、色を区別しやすくなります。

To adjust the saturation, enter a value for the BslSaturation parameter. By default, the parameter is set to 1 (normal saturation).

パラメーター値を小さくすると、グレーに近い落ち着いた色になります。パラメーター値を大きくすると、より鮮明で生き生きとした色になります。

サンプルコード#

// Set the Saturation parameter to 1.4
camera.BslSaturation.SetValue(1.4);
INodeMap& nodemap = camera.GetNodeMap();
// Set the Saturation parameter to 1.4
CFloatParameter(nodemap, "BslSaturation").SetValue(1.4);
// Set the Saturation parameter to 1.4
camera.Parameters[PLCamera.BslSaturation].SetValue(1.4);
/* Macro to check for errors */
#define CHECK(errc) if (GENAPI_E_OK != errc) printErrorAndExit(errc)
GENAPIC_RESULT errRes = GENAPI_E_OK;  /* Return value of pylon methods */
/* Set the Saturation parameter to 1.4 */
errRes = PylonDeviceSetFloatFeature(hdev, "BslSaturation", 1.4);
CHECK(errRes);
# Set the Saturation parameter to 1.4
camera.BslSaturation.Value = 1.4

You can also use the pylon Viewer to easily set the parameters.