Line Minimum Output Pulse Width#
可能需要增加相机的输出信号宽度,以适合部分可能需要一定最小信号宽度才能检测到信号的接收器。
该功能的使用#
指定线路最小输出脉宽#
- 设置
LineSelector
parameter to the desired camera output line. - Enter a value for the
LineMinimumOutputPulseWidth
parameter.
运作原理#
为了确保可靠地检测到相机的输出信号,Line Minimum Output Pulse Width 功能允许您将输出信号宽度增加到最小宽度。最小宽度以微秒为单位,最大为 100 μs。
- 如果原始信号宽度比指定的最小信号宽度窄,则增加信号宽度以达到最小宽度。
- 如果原始信号宽度等于或大于设置的最小信号宽度,则此功能无效。
示例代码#
/* 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 */
/* Select output line Line 2 */
errRes = PylonDeviceFeatureFromString(hdev, "LineSelector", "Line2");
CHECK(errRes);
/* Set the parameter value to 10.0 microseconds */
errRes = PylonDeviceSetFloatFeature(hdev, "LineMinimumOutputPulseWidth", 10.0);
CHECK(errRes);
您也可以使用 pylon Viewer 轻松设置参数。