108 / 177
Copyright © 2018 - 2020 Toshiba Teli Corporation, All rights reserved.
https://www.toshiba-teli.co.jp/en/
DAA00195C
LineSource
LineSelector
LineSource
LineSource
LineSelector
Line0
Line1
Line2
LineSource(Line1)
LineSource(Line0)
LineSource(Line2)
Camera Internal
Register
Camera Internal
Selector
XML node
Camera Register
Selects the source of the output signal.
Integer value and string value of Enumeration are as follows.
Integer
String
Description
0
Off
Off
32
UserOutput
Outputs the value set in ‘UserOutputValueAll’.
64
Timer0Active
This signal can be used as strobe control signal.
The delay time and pulse width of this signal are configurable.
99
AcquisitionActive
Indicates
AcquisitionStart state of camera.
106
FrameTriggerWait
Indicates that camera is ready to accept trigger signal.
(both hardware and software)
107
FrameActive
Period from exposure start to sensor read-out completion.
115
FrameTransferActive Period of transferring image streaming data on interface bus.
123
ExposureActive
Period from exposure start to exposure end.
// GenICam node handle
CAM_NODE_HANDLE hMode = NULL;
CAM_NODE_HANDLE hSelector = NULL;
CAM_NODE_HANDLE hSource = NULL;
// Retrieve GenICam node.
Nd_GetNode(s_hCam, "LineModeAll", &hMode);
Nd_GetNode(s_hCam, "LineSelector", &hSelector);
Nd_GetNode(s_hCam, "LineSource", &hSource);
// Line2/Line1 = output, Line0 = input
int64_t Mode = 6;
Nd_SetIntValue(s_hCam, hMode, Mode);
// Line1 = ExposureActive
Nd_SetEnumStrValue(s_hCam, hSelector, "Line1");
Nd_SetEnumStrValue(s_hCam, hSource, "ExposureActive");
// Line2 = FrameTransferActive
Nd_SetEnumStrValue(s_hCam, hSelector, "Line2");
Nd_SetEnumStrValue(s_hCam, hSource, "FrameTransferActive");
Please refer to [INode functions], [IInteger node functions], [IBoolean node functions] and [IEnumeration
node functions] in [TeliCamAPI Library manual] for more detail.