Configuring the Frame Grabber Using pylon#
信息
This topic covers basic use cases. For in-depth information about the software features of the frame grabber, see the following documentation:
Configuring the frame grabber is especially useful in the following situations:
- You want to change the applet used by the frame grabber.
- You want to trigger the connected Basler boost camera via the frame grabber.
- You want to perform debayering on the frame grabber to increase the performance of your imaging system.
- You want to use an output format that isn't available on your camera, e.g., a 16-bit mono format.
- You want to configure the trigger signals received or sent by the frame grabber.
更改小程序#
The applet running on the frame grabber defines its functionality. For certain camera setups, you may have to change the default applet.
To change the applet used by the frame grabber, set the InterfaceApplet parameter to the name of the applet to be loaded, e.g., Acq_DualCXP12Area.
To find out which applets are available, see Acquisition Applets for imaWorx CXP-12 Quad.
Using the Frame Grabber to Trigger a Basler boost Camera#
信息
This section is only relevant if you specifically want to trigger the camera via the frame grabber. Usually, the camera is triggered via the camera's I/O connector. For more information, see Triggered Image Acquisition.
硬件触发(外部)#
With external triggering enabled, you can send trigger input signals to the frame grabber, and the frame grabber forwards these signals to the Basler boost camera.
To configure the frame grabber for external hardware triggering:
- 设置
AreaTriggerModeparameter toExternal. - 设置
TriggerInSourceparameter to the desired "Front GPI" input line.
For example, if you want to use GPI0 (pin 11 and 12 on the frame grabber) for external triggering, set the parameter toFrontGpiTriggerSource0. - 设置
TriggerCameraOutSelectparameter to the corresponding "Bypass" option.
For example, if you selectedFrontGpiTriggerSource0, set theTriggerCameraOutSelectparameter toBypassFrontGpi0. - 设置
TriggerStateparameter toActive. - 如有必要,按如下所述配置触发信号。
All trigger signals are forwarded to the camera's source signals CxpTrigger0 and CxpTrigger1 (there is currently no difference in behavior between the two lines). The signals can be used for various purposes. The most common use case is image acquisition. See the example below.
硬件触发(内部)#
With internal triggering enabled, the frame grabber generates trigger signals internally at a specified frequency. All external trigger signals are ignored.
To configure the frame grabber for internal hardware triggering:
- 设置
AreaTriggerModeparameter toGenerator. - 设置
TriggerOutputFrequencyparameter to the desired trigger output frequency. For example, if you set the parameter to 8, the frame grabber will generate 8 trigger signals per second. - 设置
TriggerCameraOutSelectparameter to the desired output line, e.g.,PulseGenerator0. - 设置
TriggerStateparameter toActive.
Now, whenever you start image acquisition, the frame grabber will generate trigger signals at the specified frequency.
All trigger signals are forwarded to the camera's source signals CxpTrigger0 and CxpTrigger1. The signals can be used for various purposes. The most common use case is image acquisition. See the example below.
示例:使用触发信号进行图像采集#
To use the external or internal trigger signals generated by the frame grabber to acquire images:
- On the camera, set the
TriggerSelectorparameter toFrameStart. - 设置
TriggerModeparameter toOn. - 设置
ExposureModeparameter toTimed. - 设置
TriggerSourceparameter toCxpTrigger0或CxpTrigger1.
As there is currently no difference in behavior between the two lines, you can choose either one of them.
Now, the camera acquires an image each time the frame grabber receives or generates a trigger signal.
信息
You can use the trigger signals as the source for any Basler boost camera feature that can be controlled by a signal source. For example, setting the CounterTriggerSource parameter to CxpTrigger0 allows you to control the Counter feature using the frame grabber.
Performing Debayering on the Frame Grabber#
You can perform debayering on the frame grabber. This reduces computing load on the camera and the host computer.
为此:
- On the camera, set the
PixelFormatparameter to a Bayer pixel format, e.g.,BayerRG12. - On the frame grabber, set the
AutomaticFormatControlparameter tofalse.
This allows you to set the output format independently of the pixel format used by the camera. - On the frame grabber, set the
Formatparameter to the corresponding RGB pixel format.
The bit depth must be three times the bit depth of the Bayer pixel format. For example, BayerRG12 (camera) = Color36bit (frame grabber).
Now, the frame grabber will perform debayering on the camera's raw image data and output RGB image data.
信息
Make sure that you set the correct RGB pixel format in step 3 above. Otherwise, images won't be acquired properly.
使用相机上不可用的输出格式#
Basler boost 相机可以输出多种 pixel format 的图像数据,例如 Bayer RG 8 或 RBG 8。有关更多信息,请参见 pixel format 主题。
If your required pixel format isn't available on the camera and you also want to avoid image conversion on the host computer, you may be able to use one of the pixel formats provided by the frame grabber.
The frame grabber provides the following formats:
| Gray8bit | Gray10bit | Gray12bit | Gray16bit |
| Color24bit | Color30bit | Color36bit | Color48bit |
| Bayergr8 | Bayergr10 | Bayergr12 | Bayergr16 |
| Bayerrg8 | Bayerrg10 | Bayerrg12 | Bayerrg16 |
| Bayergb8 | Bayergb10 | Bayergb12 | Bayergb16 |
| Bayerbg8 | Bayerbg10 | Bayerbg12 | Bayerbg16 |
要使用相机上不可用的输出格式,请执行以下操作:
- On the camera, set the
PixelFormatparameter to the desired camera pixel format, e.g.,Mono12. - On the frame grabber, set the
AutomaticFormatControlparameter tofalse.
This allows you to set the output format independently of the pixel format used by the camera. - On the frame grabber, set the
Formatparameter to the desired output format, e.g.,Gray16bit.
With the example values above, the frame grabber outputs 16-bit image data based on 12-bit camera image data. Padding bits (zeros) are inserted as illustrated below.
Configuring the Trigger Signals using the gpioTool#
With the gpioTool command-line tool, you can configure the physical properties of the trigger signals received or sent by the frame grabber:
The gpioTool is included in the Framegrabber SDK and in the pylon Software Suite.
For more information, see gpioTool.
示例代码#
// Select the Acq_SingleCXP12Area applet
camera.GetTLParams().InterfaceApplet.SetValue(Acq_SingleCXP12Area);
// Configure the frame grabber for external triggering
camera.GetTLParams().AreaTriggerMode.SetValue(AreaTriggerMode_External);
camera.GetTLParams().TriggerInSource.SetValue(TriggerInSource_FrontGpiTriggerSource0);
camera.GetTLParams().TriggerCameraOutSelect.SetValue(TriggerCameraOutSelect_BypassFrontGpi0);
camera.GetTLParams().TriggerState.SetValue(TriggerState_Active);
// Configure the frame grabber for internal triggering
camera.GetTLParams().AreaTriggerMode.SetValue(AreaTriggerMode_Generator);
camera.GetTLParams().TriggerOutputFrequency.SetValue(8);
camera.GetTLParams().TriggerCameraOutSelect.SetValue(TriggerCameraOutSelect_PulseGenerator0);
camera.GetTLParams().TriggerState.SetValue(TriggerState_Active);
// Use the external or internal trigger signals for image acquisition
camera.TriggerSelector.SetValue(TriggerSelector_FrameStart);
camera.TriggerMode.SetValue(TriggerMode_On);
camera.ExposureMode.SetValue(ExposureMode_Timed);
camera.TriggerSource.SetValue(TriggerSource_CxpTrigger0);
// Perform debayering on the frame grabber (Bayer RG 12 --> RGB 36 bit)
camera.PixelFormat.SetValue(PixelFormat_BayerRG12);
camera.GetTLParams().AutomaticFormatControl.SetValue(false);
camera.GetTLParams().Format.SetValue(Format_Color36bit);
// Configure the frame grabber to output 16-bit mono image data based on
// 12-bit mono image data from the camera
camera.PixelFormat.SetValue(PixelFormat_Mono12);
camera.GetTLParams().AutomaticFormatControl.SetValue(false);
camera.GetTLParams().Format.SetValue(Format_Gray16bit);
此示例代码仅适用于 C++ 语言。
You can also use the pylon Viewer to set the parameters.