Back to Aurora Vision Studio website

You are here: Start » Filter Reference » Camera Support » Flir Spinnaker » Spinnaker_StartAcquisition

Spinnaker_StartAcquisition


Module: ThirdParty

Starts image acquisition.

Name Type Range Description
Input value inDeviceSerialNumber String* Source device serial number
Input value inBufferCount Integer* 1 - Number of image buffers
Input value inPixelFormat SpinnakerPixelFormat* Image pixel format
Input value inExposureAuto SpinnakerAutoSettings* Sets the automatic exposure mode
Input value inExposureTime Double* Exposure time in microseconds
Input value inFrameRateEnable Bool* If enabled, inFrameRate can be used to manually control the frame rate
Input value inFrameRate Double* Frame rate in Hertz
Input value inGainAuto SpinnakerAutoSettings* Sets the automatic gain mode
Input value inGain Double* Controls the amplification of the video signal in dB

Description

This filter is intended for establishing connection with a device using Spinnaker SDK, to initialize image streaming. It is only needed when explicit image acquisition start is required in the initial phase of a program. For example, it can be used to prepare a camera, running in triggered mode, to be able to capture trigger signals before the first invoke of Spinnaker_GrabImage or to start multiple cameras in sync before the acquisition phase.

The use of this filter is not obligatory. Spinnaker_GrabImage or Spinnaker_GrabImage_WithTimeout] filters will initialize and start image acquisition upon their first invoke. When this filter is used, the inPixelFormat parameter of subsequent Spinnaker_GrabImage and Spinnaker_GrabImage_WithTimeout filters has no effect.

Remarks

Camera driver software

This filter is intended to cooperate with camera using its vendor Spinnaker SDK. To be able to connect to camera it is required to install Spinnaker SDK software with camera dedicated drivers. Currently Aurora Vision Studio uses Spinnaker version v2.7.0.128.

Spinnaker SDK can be downloaded from the following website: https://www.flir.com/support/browse/camera-cores--components/machine-vision-cameras/sdks (registration may be required).

During installation you should select "Application Development". Visual Studio Version should be also changed to "Visual Studio 2015".

Camera identification

When there is only one camera connected to computer, inDeviceSerialNumber field can be set to Auto. In this situation first available camera will be found and connected.

inDeviceSerialNumber can be used to pick one of multiple cameras connected to computer. Set this field to device serial number (for example "1234567", should be available on device casing as "s/n: 1234567").

Camera parameters

Most of parameters exposed by camera filters are optional, setting them to 'Auto' leaves related parameters for default configuration by camera driver.

To change other and more advanced camera parameters use configuration tool "SpinView" available with Spinnaker SDK. Refer to SDK documentation to find information about parameters and how to save parameters into memory channels.

It is also possible to adjust more advanced parameters using Spinnaker_SetParameter filters. The parameters name should be obtained from SpinView application or from Spinnaker SDK.

Parallel execution

This filter cannot be placed in multiple Workers.

Complexity Level

This filter is available on Advanced Complexity Level.

See Also