Basler raL2048-48gm User Manual Page 96

  • Download
  • Add to my manuals
  • Print
  • Page
    / 238
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 95
Acquisition Control AW00118302000
86 Basler racer GigE
8.2.3.4 Frame Timeout
The Frame Timeout allows setting a maximum time (in microseconds) that may elapse for each
frame acquisition, i.e. the maximum time for the acquisition of the lines for a frame.
When the frame timeout is enabled and a time is set a partial frame will be transmitted if the set time
has elapsed before all lines specified for the frame are acquired. In addition, a frame timeout event
will be generated if it was enabled.
You can enable and configure the frame timeout from within your application software by using the
pylon API. The following code snippet illustrates using the API to enable and configure the frame
timeout:
// enable FrameTimeout and set FrameTimeout value
Camera.FrameTimeoutEnable.SetValue(true);
// Although FrameTimeoutAbs is measured in microseconds the current
resolution
// is just milliseconds.
double FrameTimeout_us = 20000.0; // 20 ms
Camera.FrameTimeoutAbs.SetValue(FrameTimeout_us);
You can enable the frame timeout event from within your application software by using the pylon
API. The following code snippet illustrates using the API to enable the frame timeout event:
// enable FrameTimeout event
Camera.EventSelector.SetValue(EventSelector_FrameTimeout);
Camera.EventNotification.SetValue(EventNotification_GenICamEvent);
// In order to capture FrameTimeout events:
// Set up an event grabber and register a callback for
// the node 'FrameTimeoutEventPort'
For more information about event reporting and enabling an event, see Section 10.4 on page 171.
Page view 95
1 2 ... 91 92 93 94 95 96 97 98 99 100 101 ... 237 238

Comments to this Manuals

No comments