Impact Acquire SDK C++
|
The Impact Acquire framework uses a property based concept to access parameters of internal structures or to configure the drivers behaviour. Features offered by the device will simply be added to other properties already present in the drivers feature tree. The following list displays the general layout of features in the GenICam interface layout (see 'GenICam' vs. 'DeviceSpecific' Interface Layout for details on different interface layouts):
For most of the features offered by a device there will be ready to use wrapper objects that come with the SDK so there will be no need to look up the feature at runtime. Depending on the selected interface layout either objects belonging to the DeviceSpecific interface or to the GenICam interface can be used. To see which SDK objects belong to which interface layout all the objects have been put into groups in the Modules section of this documentation. To find out which device supports which interface layout please refer to Which Interface Is Supported By Which Device? .
For the GenICam interface layout there will be convenient access objects fro ALL the feature defined in the GenICam Standard Feature Naming Convention (SFNC) as well as ALL the custom features defined by Balluff. So to access e.g. SFNC compliant features belonging the AcquisitionControl category this object can be used:
mvIMPACT::acquire::GenICam::AcquisitionControl. In order to be able to use the GenICam specific wrapper classes in an application also needs to include an additional header file:
The exposure time then can be modified like this:
Further information about the usage of the GenICam to change settings can be found a the sample: GenICamCommonSettingsUsage.cpp
In addition to that the mvGenTL_Acquire driver package contains an embedded wrapper code generator that can be used to create a custom header file for a device or device family not known at compile time. The usage of this code generator is explained in the use case GenICam To Impact Acquire Code Generator. It can significantly simplify the development process if all devices that shall be used by an application are known at the time of compiling the application.
All objects which grant access to device driver interface properties will require the pointer to the mvIMPACT::acquire::Device acquired from a mvIMPACT::acquire::DeviceManager object again.
Objects the user can create to modify or read mvIMPACT::acquire::Property values include (among other):
Name of the class | Description |
---|---|
mvIMPACT::acquire::DeviceManager | The main and most important of all objects. There always has to be at least one! |
mvIMPACT::acquire::Device | An object representing an actual device. This is needed for creating almost every other object. |
mvIMPACT::acquire::BasicDeviceSettings | A collection of basic settings. Please note that device specific classes derived from this class might offer more features |
mvIMPACT::acquire::ImageProcessing | Various properties and methods to process the image before transmitted to the user |
mvIMPACT::acquire::ImageDestination | Properties to control the destination format of the image |
mvIMPACT::acquire::Info | General information about the device and the driver |
mvIMPACT::acquire::Statistics | Provides access to statistical information like the current frames per second |
mvIMPACT::acquire::SystemSettings | Provides access to settings controlling the overall behaviour of the driver |
Name of the class | Description |
---|---|
mvIMPACT::acquire::CameraSettingsBlueCOUGAR | A collection of mvBlueCOUGAR specific settings |
mvIMPACT::acquire::Connector | Properties to control the video input channel selection for frame grabber devices |
Name of the class | Description |
---|---|
mvIMPACT::acquire::CameraSettingsBlueFOX | A collection of mvBlueFOX specific settings |
mvIMPACT::acquire::SettingsBlueFOX | A combination of the three classes mvIMPACT::acquire::SettingsBlueFOX, mvIMPACT::acquire::ImageDestination and mvIMPACT::acquire::ImageProcessing |
mvIMPACT::acquire::InfoBlueFOX | Specific information about the mvBlueFOX and the driver |
mvIMPACT::acquire::IOSubSystemBlueFOX | Provides access to the digital I/Os of the device and to real time control machines if available |
mvIMPACT::acquire::SystemBlueFOX | Provides access to settings controlling the overall behaviour of the driver |
Name of the class | Description |
---|---|
mvIMPACT::acquire::CameraSettingsFrameGrabber | A collection of device specific settings |
mvIMPACT::acquire::Connector | Properties to control the video input channel selection |
mvIMPACT::acquire::SettingsFrameGrabber | A combination of the four classes mvIMPACT::acquire::CameraSettingsFrameGrabber, mvIMPACT::acquire::Connector, mvIMPACT::acquire::ImageDestination and mvIMPACT::acquire::ImageProcessing |
mvIMPACT::acquire::IOSubSystemFrameGrabber | Provides access to the digital I/Os of the device and to real time control machines if available |
mvIMPACT::acquire::OutputSignalGeneratorFrameGrabber | Provides access to high level functions to control the creation of complex signals on digital outputs |
Name of the class | Description |
---|---|
mvIMPACT::acquire::CameraSettingsVirtualDevice | A collection of mvVirtualDevice specific settings |
Please refer to the mvIMPACT::acquire::GenICam namespace for additional details and the sample GenICamCommonSettingsUsage.cpp how to programmatically work with the GenICam settings.
If an application shall be capable of dealing with every feature of every device and not all these devices are known at compile time, a code generator can not be used as it can only create code for devices which are accessible when creating the code. In this case, features must be extracted dynamically from the drivers feature tree. To do this SDK offers a set of functions that can be used to search and use features or to iterate over a tree of features. These objects and functions will be explained in the following sections.
To bind a C++ property object to a certain feature offered by the device at runtime the C++ interface can be used in several ways. One possibility is to use a mvIMPACT::acquire::DeviceComponentLocator object. Let's assume an application wants to access a 64 bit integer property that is called Width and is located somewhere in the devices feature tree. In this case, we want to bind the property of the base setting. The code to bind the device feature to a C++ object would look more or less like this:
Method objects (ICommand nodes in GenICam) can be bound in exactly the same way however special care must be taken as their names contain information about the argument list of the method:
If the type is unclear for a particular feature some more complex code is needed:
It's also possible to iterate over all the features offered by a device or a subtree of this. To see how this is done please have a look at the description of the class mvIMPACT::acquire::Component.
To access e.g. the device information related features, the locator instance must be initialised in a different way: