Impact Acquire SDK .NET
Device Class Referencesealed

This class and its functions represent an actual device detected by this interface in the current system. More...

Public Member Functions

void close ()
 Closes an opened device.
 
bool hasCapability (TDeviceCapability capability)
 Checks whether this device has a certain capability.
 
void open ()
 Opens a device.
 
int setID (int newID)
 Assigns a new ID to this device.
 
int updateFirmware ()
 Updates the firmware of the device.
 
void validateInterfaceLayout (TDeviceInterfaceLayout requiredInterfaceLayout)
 A convenience function mostly used internally. Raises an exception if the current value of mv.impact.acquire.Device.interfaceLayout does not match the value passed to the function.
 

Public Attributes

readonly EnumPropertyI< TAcquisitionStartStopBehaviouracquisitionStartStopBehaviour = new EnumPropertyI<TAcquisitionStartStopBehaviour>()
 An enumerated integer property defining the start/stop behaviour during acquisition of this driver instance.
 
readonly PropertyIBoolean allowUnrecommendedFeatures = new PropertyIBoolean()
 An enumerated integer property which can be used to unlock certain features, that are available but not recommended by the device manufacturer.
 
readonly PropertyS autoLoadSettingOrder = new PropertyS()
 A string property (read-only) containing the auto load order of feature settings that is executed during initialisation of the device.
 
readonly PropertyIBoolean autoNegotiatePacketSize = new PropertyIBoolean()
 An enumerated integer property which can be used to enable or disable the MTU auto negotiation of a GigE Vision device when opening it.
 
readonly EnumPropertyI< TDeviceAutoNegotiatePacketSizeModeautoNegotiatePacketSizeMode = new EnumPropertyI<TDeviceAutoNegotiatePacketSizeMode>()
 An enumerated integer property (read-only) that can be used to define how the auto packet size negotiation for a GigE Vision device is handled.
 
readonly EnumPropertyI< TDeviceCapabilitycapabilities = new EnumPropertyI<TDeviceCapability>()
 An enumerated integer property (read-only) defining special device capabilities.
 
readonly PropertyS customDataDirectory = new PropertyS()
 A string property (read-only once the device is open) containing a path to a custom directory for the location of camera description files, etc.
 
readonly PropertyI defaultRequestCount = new PropertyI()
 An integer property that defines the number of mv.impact.acquire.Request objects to be created when the device is opened.
 
readonly EnumPropertyI< TDeviceAccessModedesiredAccess = new EnumPropertyI<TDeviceAccessMode>()
 An enumerated integer property that can be used to define the desired access to the device when opening it.
 
readonly EnumPropertyI< TDeviceClassdeviceClass = new EnumPropertyI<TDeviceClass>()
 An enumerated integer property (read-only) defining the device class this device belongs to.
 
readonly PropertyS deviceFamilyName = new PropertyS()
 A string property (read-only) containing the family name of this device.
 
readonly PropertyI deviceID = new PropertyI()
 An integer property (read-only) containing the device ID associated with this device.
 
readonly PropertyS deviceModelName = new PropertyS()
 A string property (read-only) containing the model name of this device.
 
readonly PropertyS deviceVersion = new PropertyS()
 A string property (read-only) containing the version(e.g. the hard ware revision) of this device.
 
readonly PropertyS family = new PropertyS()
 A string property (read-only) containing the family name of this device.
 
readonly PropertyI firmwareVersion = new PropertyI()
 An integer property (read-only) containing the firmware version of this device.
 
readonly EnumPropertyI< TDeviceAccessModegrantedAccess = new EnumPropertyI<TDeviceAccessMode>()
 An enumerated integer property (read-only) that can be used to query the granted access to the device after an attempt to open it.
 
readonly EnumPropertyI< THWUpdateResultHWUpdateResult = new EnumPropertyI<THWUpdateResult>()
 An enumerated integer property (read-only) defining user executed hardware update results.
 
readonly EnumPropertyI< TDeviceInterfaceLayoutinterfaceLayout = new EnumPropertyI<TDeviceInterfaceLayout>()
 An enumerated integer property which can be used to define which interface layout shall be used when the device is opened.
 
readonly PropertyS licenseDetails = new PropertyS()
 A string property (read-only) that indicates why a device may be used with this SDK.
 
readonly PropertyIBoolean licenseValid = new PropertyIBoolean()
 A boolean property (read-only) that indicates if a device may be used with this SDK.
 
readonly EnumPropertyI< TDeviceLoadSettingsloadSettings = new EnumPropertyI<TDeviceLoadSettings>()
 An enumerated integer property which can be used to define which previously stored setting to load when the device is opened.
 
readonly PropertyS manufacturer = new PropertyS()
 A string property (read-only) containing the name of the manufacturer of this device.
 
readonly PropertyS manufacturerSpecificInformation = new PropertyS()
 A string property (read-only) containing manufacturer specific information of this device.
 
readonly PropertyS product = new PropertyS()
 A string property (read-only) containing the product name of this device.
 
readonly PropertyI resultQueueCount = new PropertyI()
 An integer property that defines the number of result queues to be created when the device is opened.
 
readonly PropertyS serial = new PropertyS()
 A string property (read-only) containing the serial number of this device.
 
readonly EnumPropertyI< TDeviceStatestate = new EnumPropertyI<TDeviceState>()
 An enumerated integer property (read-only) containing the current state of this device.
 
readonly PropertyIBoolean userControlledImageProcessingEnable = new PropertyIBoolean()
 An enumerated integer property defining whether user controlled image processing related features shall be created under 'System Settings' or not.
 

Static Public Attributes

const int INVALID_ID = -1
 A symbolic constant to define an invalid handle.
 

Properties

ComponentList deviceDriverFeatureList [get]
 Returns a list providing access to driver library specific features.
 
int hDev [get]
 A unique identifier for this device.
 
int hDrv [get]
 A unique identifier for the functionality offered by this device.
 
bool isInUse [get]
 Returns the current usage status of this device.
 
bool isOpen [get]
 Returns the current initialisation status in this process.
 
UserData userData [get]
 Returns a reference to a helper class to handle user specific data stored in the devices non-volatile memory (if available).
 

Events

DeviceWillBeClosedEventHandler onDeviceWillBeClosed
 An event handler for events which are sent to all listeners just before the device driver instance will be closed.
 

Detailed Description

This class and its functions represent an actual device detected by this interface in the current system.

Instances of it can only be created by instances of the mv.impact.acquire.DeviceManager class as only the mv.impact.acquire.DeviceManager has the precise knowledge to do that anyway. As a result from this fact pointers to instances of mv.impact.acquire.Device can be obtained via a mv.impact.acquire.DeviceManager object only.

Attention
NEVER try to explicitly delete an instance of mv.impact.acquire.Device! You did not allocate it and the result will be a crash! The mv.impact.acquire.DeviceManager will take care of all resources for you.

A valid pointer to a mv.impact.acquire.Device object is needed to construct most of the other objects available in this interface.

Almost every object requiring a valid pointer to a mv.impact.acquire.Device object will need to device in an initialised state as the properties provided e.g. by the class mv.impact.acquire.CameraSettingsBase will be constructed when the device is initialised. To initialise a device this class provides the function mv.impact.acquire.Device.open. However every object which needs an initialised device to be constructed successfully will try to open the device when it hasn't been opened before, so the user does not need to call this function explicitly.

Attention
Whenever a device is closed via a call to mv.impact.acquire.Device.close all other objects constructed with a pointer to that device(e.g. mv.impact.acquire.CameraSettingsBase before will become invalid and need to be reconstructed afterwards, so don't close a device needlessly.
Whenever the last instance to a DeviceManager object gets destroyed within the current process every remaining device that was opened in this process before will be closed automatically! Thus every instance to mv.impact.acquire.Device objects or objects created with a pointer to a mv.impact.acquire.Device object will become invalid automatically. Therefore the user has to make sure there is always at least one instance to a mv.impact.acquire.DeviceManager object within the current process unless no more device access functions shall be called!
Examples
Callback.cs, CaptureToUserMemory.cs, ContinuousCapture.cs, ContinuousCaptureAllDevices.cs, ContinuousCaptureSimple.cs, ContinuousSaveImage.cs, DigitalIOs.cs, GenICamCallbackOnEvent.cs, GenICamCommonSettingsUsage.cs, GenICamInterfaceLayout.cs, Properties.cs, SingleCapture.cs, and SingleCaptureStorage.cs.

Member Function Documentation

◆ close()

void close ( )
inline

Closes an opened device.

This function closes a device previously opened again.

Attention
Whenever a device is closed via a call to mv.impact.acquire.Device.close all other objects constructed with a pointer to that device(e.g. mv.impact.acquire.CameraSettingsBase before will become invalid and need to be reconstructed afterwards, so don't close a device needlessly.
See also
Device.open,
Device.isOpen
Examples
ContinuousSaveImage.cs.

◆ hasCapability()

bool hasCapability ( TDeviceCapability capability)
inline

Checks whether this device has a certain capability.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceCapability.

Returns
  • true if the device has the capability in question
  • false otherwise.
Parameters
[in]capabilityThe capability who's presence shall be checked.

◆ open()

void open ( )
inline

Opens a device.

This function will try to open the device represented by this instance of mv.impact.acquire.Device. If this fails for any reason an exception will be thrown. The exception object will contain additional information about the reason for the error.

Calling this function is not really necessary, as each object for accessing other settings of the device or even the function interface need the device to be opened in order to be constructed. Therefore all the constructors for these objects check if the device is open by calling mv.impact.acquire.Device.isOpen and open the device if necessary.

Note
Keep in mind that the first object trying to open the device might therefore throw an exception as well if opening the device fails for some reason.

Whenever a device is opened, the driver executes the following procedure:

Device_Setting_Start_Procedure.png
Device setting start procedure

Please have a look here for more information about automatic loading of settings when a device is opened.

Examples
Callback.cs, CaptureToUserMemory.cs, ContinuousCapture.cs, ContinuousCaptureAllDevices.cs, ContinuousSaveImage.cs, GenICamCallbackOnEvent.cs, GenICamCommonSettingsUsage.cs, GenICamInterfaceLayout.cs, Properties.cs, SingleCapture.cs, and SingleCaptureStorage.cs.

◆ setID()

int setID ( int newID)
inline

Assigns a new ID to this device.

To allow any application to distinguish between different devices of the same type the user can assign an unique ID to each device using this function. This ID currently is limited to values between 0 and 250 and is stored in the devices internal memory. This ID is NOT volatile. It will remain stored even if the device is unplugged.

Note
Remarks
See also
mv.impact.acquire.Device.open,
mv.impact.acquire.Device.close
Returns
Parameters
[in]newIDThe new ID that shall be assigned to the device.

◆ updateFirmware()

int updateFirmware ( )
inline

Updates the firmware of the device.

Calling this function will cause the driver to download a firmware version compiled into the driver library into the devices non-volatile internal memory.

Note
Remarks
  • Be sure what you are doing before calling this function. Under normal circumstances it won't be necessary to update a devices firmware.
  • The download will take some time (depending on the device up to 30 seconds). During this time the device and the thread calling this function will NOT respond.
  • Do NOT interrupt this download.
  • After a successful download a USB device needs to be unplugged and plugged in again. Otherwise the new firmware version will not be activated.
  • To download a new firmware version the device must be closed.
  • Not every device will offer this feature! When calling this function for a device that does not offer this feature, the function will return mv.impact.acquire.TDMR_ERROR.DMR_FEATURE_NOT_AVAILABLE.
See also
mv.impact.acquire.Device.open,
mv.impact.acquire.Device.close
Returns

◆ validateInterfaceLayout()

void validateInterfaceLayout ( TDeviceInterfaceLayout requiredInterfaceLayout)
inline

A convenience function mostly used internally. Raises an exception if the current value of mv.impact.acquire.Device.interfaceLayout does not match the value passed to the function.

If a driver does not support the interface layout property this function does nothing!

Member Data Documentation

◆ acquisitionStartStopBehaviour

An enumerated integer property defining the start/stop behaviour during acquisition of this driver instance.

Valid values for this property are defined by the enumeration mv.impact.acquire.TAcquisitionStartStopBehaviour.

Note
This property will become read-only while the device is open.
This property is not supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.

Not every device will offer the same options. Check for valid modes by reading the properties translation dictionary with the function mv.impact.acquire.EnumPropertyI<T>.getTranslationDict

Since
1.12.11
Examples
CaptureToUserMemory.cs, and ContinuousCaptureAllDevices.cs.

◆ allowUnrecommendedFeatures

readonly PropertyIBoolean allowUnrecommendedFeatures = new PropertyIBoolean()

An enumerated integer property which can be used to unlock certain features, that are available but not recommended by the device manufacturer.

Valid values for this property are defined by the enumeration mv.impact.acquire.TBoolean.

This property will be invisible by default. As the name indicates its use requires special knowledge that can be provided by the device manufacturer on request.

Note
Once the device is in use (has been initialized) this property will become (read-only).
Attention
Unlocking certain unrecommended features might result in the appearance of new translation dictionary entries for certain properties. Some of these translation strings might contain an exclamation mark ('!') in its name. NEVER rely on that! These exclamation marks or even the complete entry might disappear with a new driver release without further notice!

◆ autoLoadSettingOrder

readonly PropertyS autoLoadSettingOrder = new PropertyS()

A string property (read-only) containing the auto load order of feature settings that is executed during initialisation of the device.

The first setting detected on the system will be used.

◆ autoNegotiatePacketSize

readonly PropertyIBoolean autoNegotiatePacketSize = new PropertyIBoolean()

An enumerated integer property which can be used to enable or disable the MTU auto negotiation of a GigE Vision device when opening it.

If set to true, the driver will try to determine the max. possible packet size during init, which if successful will result in optimal performance. Valid values for this property are defined by the enumeration mv.impact.acquire.TBoolean.

Note
Once the device is in use (has been initialized) this property will become (read-only). If this feature is disabled even before the device has been opened a firmware update is needed to use it when accessed via the mvGenTLProducer-lib. When using a 3rd party GenTL producer to access the GigE Vision device this feature will not be available.
This property might not be supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.

◆ autoNegotiatePacketSizeMode

An enumerated integer property (read-only) that can be used to define how the auto packet size negotiation for a GigE Vision device is handled.

If set to mv.impact.acquire.danpsmHighToLow the MTU is automatically negotiated starting from the NICs current MTU down to a value supported by all components belonging to the network path (device, network interface card, switches, ...), if set to mv.impact.acquire.danpsmLowToHigh the negotiation starts with the small value tries larger values with each iteration until the optimal value has been found. Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceAutoNegotiatePacketSizeMode.

Note
Once the device is in use (has been initialized) this property will become (read-only). When using a 3rd party GenTL producer to access the GigE Vision device this feature will not be available.
This property might not supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.

◆ capabilities

An enumerated integer property (read-only) defining special device capabilities.

This property stores certain device capabilities that can be read without opening the device.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceCapability.

◆ customDataDirectory

readonly PropertyS customDataDirectory = new PropertyS()

A string property (read-only once the device is open) containing a path to a custom directory for the location of camera description files, etc.

When a custom path is assigned to this property this path will be used to locate certain driver specific files and folders. Under this folder the following structure must be created:

<customDataDirectory>
|- CameraFiles // this folder will be searched by frame grabbers for camera description files
|- GenICam // this folder will be searched by GenICam compliant devices that refer to a local GenICam&trade; description file

If this property is left empty

  • PUBLIC%/Documents/Balluff/ImpactAcquire will be used by default on Windows™ platforms and
  • /opt/ImpactAcquire/data on Unix based platforms.

◆ defaultRequestCount

readonly PropertyI defaultRequestCount = new PropertyI()

An integer property that defines the number of mv.impact.acquire.Request objects to be created when the device is opened.

By writing to this property an application can define the default number of mv.impact.acquire.Request objects that will be allocated when opening the device.

Note
This property will become read-only while the device is open.
See also
mv.impact.acquire.SystemSettings.requestCount (to change the number of request objects later and to find out why this parameter is important)

◆ desiredAccess

An enumerated integer property that can be used to define the desired access to the device when opening it.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceAccessMode.

Note
This property will become read-only while the device is open.
This property is not supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.

◆ deviceClass

readonly EnumPropertyI<TDeviceClass> deviceClass = new EnumPropertyI<TDeviceClass>()

An enumerated integer property (read-only) defining the device class this device belongs to.

Note
This property has been added to the device driver in version 1.8.3 thus might not be available when working with old device drivers. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.

◆ deviceFamilyName

readonly PropertyS deviceFamilyName = new PropertyS()

A string property (read-only) containing the family name of this device.

Since
3.0.0

◆ deviceID

readonly PropertyI deviceID = new PropertyI()

An integer property (read-only) containing the device ID associated with this device.

A device ID can be used to identify a certain device in the system. The ID is an 8 bit unsigned integer value stored in the device's EEPROM. In order to allow the distinct detection of a device via its device ID, the user has to make sure that two devices belonging to the same product family never share the same ID.

Note
Remarks
  • To modify the device ID a separate tool will be provided. To modify the device ID without that tool the function mv.impact.acquire.Device.setID can be called.
  • This ID is not to be confused with the handle returned by the function mv.impact.acquire.Device.hDev. The latter one represents something which can be assumed as a handle from a software based point of view, while the ID represented by the property deviceID is an ID stored in the physical devices EEPROM.

◆ deviceModelName

readonly PropertyS deviceModelName = new PropertyS()

A string property (read-only) containing the model name of this device.

Since
3.0.0

◆ deviceVersion

readonly PropertyS deviceVersion = new PropertyS()

A string property (read-only) containing the version(e.g. the hard ware revision) of this device.

Note
This feature is supported by every device driver. If a device does not seem to support this feature (calling mv.impact.acquire.Component.isValid returns false) a driver update will fix this.

◆ family

readonly PropertyS family = new PropertyS()

A string property (read-only) containing the family name of this device.

Note
This is a legacy property only provided for backward compatibility. New applications should use mv.impact.acquire.Device.deviceFamilyName instead!
Examples
DigitalIOs.cs.

◆ firmwareVersion

readonly PropertyI firmwareVersion = new PropertyI()

An integer property (read-only) containing the firmware version of this device.

A firmware is considered to be something that is stored in non volatile device memory, thus when a device is disconnected from the power supply and plugged into a different target system the same code will be executed on the device.

Some devices however may not support non volatile memory to accommodate a firmware. Typically the device driver then will download a firmware into the devices RAM at startup. Such devices will be considered as not supporting a firmware as in this case only the driver version present on the target system has impact on the devices behaviour.

When a device does not support a non volatile firmware, reading this property will always return 0.

◆ grantedAccess

An enumerated integer property (read-only) that can be used to query the granted access to the device after an attempt to open it.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceAccessMode.

Note
This property is not supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.

◆ HWUpdateResult

readonly EnumPropertyI<THWUpdateResult> HWUpdateResult = new EnumPropertyI<THWUpdateResult>()

An enumerated integer property (read-only) defining user executed hardware update results.

This property e.g. might contain the result of a user executed firmware update. Valid values for this property are defined by the enumeration mv.impact.acquire.THWUpdateResult.

◆ interfaceLayout

An enumerated integer property which can be used to define which interface layout shall be used when the device is opened.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceInterfaceLayout.

Note
Once the device is in use (has been initialized) this property will become (read-only).
This feature is available for every device. A device not offering this feature requires a driver update. Always check for the availability of this feature by calling mv.impact.acquire.Component.isValid.

Not every device will offer the same options. Check for valid modes by reading the properties translation dictionary with the function mv.impact.acquire.EnumPropertyI<T>.getTranslationDict

Examples
ContinuousCaptureAllDevices.cs, ContinuousSaveImage.cs, and DigitalIOs.cs.

◆ INVALID_ID

const int INVALID_ID = -1
static

◆ licenseDetails

readonly PropertyS licenseDetails = new PropertyS()

A string property (read-only) that indicates why a device may be used with this SDK.

This property holds information on why a device may be used with Impact Acquire.

Note
This property will only be supported by some drivers (those allowing the usage of third party devices). Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.
See also
mv.impact.acquire.Device.licenseValid
Since
2.46.0

◆ licenseValid

readonly PropertyIBoolean licenseValid = new PropertyIBoolean()

A boolean property (read-only) that indicates if a device may be used with this SDK.

All Balluff/MATRIX VISION devices may be used with this SDK without limitations. Third party devices might work as well but without an appropriate license that can be obtained from Balluff certain restrictions may apply.

Note
This property will only be supported by some drivers (those allowing the usage of third party devices). Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.
See also
mv.impact.acquire.Device.licenseDetails
Since
2.46.0

◆ loadSettings

An enumerated integer property which can be used to define which previously stored setting to load when the device is opened.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceLoadSettings.

Note
Once the device is in use (has been initialized) this property will become (read-only).

◆ manufacturer

readonly PropertyS manufacturer = new PropertyS()

A string property (read-only) containing the name of the manufacturer of this device.

Note
This property is not supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.
Since
2.11.3

◆ manufacturerSpecificInformation

readonly PropertyS manufacturerSpecificInformation = new PropertyS()

A string property (read-only) containing manufacturer specific information of this device.

Note
This property is not supported by every device. Therefore always call the function mv.impact.acquire.Component.isValid to check if this property is available or not.
Since
2.18.3

◆ product

readonly PropertyS product = new PropertyS()

A string property (read-only) containing the product name of this device.

Note
This is a legacy property only provided for backward compatibility. New applications should use mv.impact.acquire.Device.deviceModelName instead!
Examples
ContinuousSaveImage.cs, and DigitalIOs.cs.

◆ resultQueueCount

readonly PropertyI resultQueueCount = new PropertyI()

An integer property that defines the number of result queues to be created when the device is opened.

By writing to this property an application can define the number of result queues that will be allocated when opening the device. When requesting buffers the user can define in which result queue a processed request shall end up by writing to the property mv.impact.acquire.ImageRequestControl.resultQueue. When waiting for a request to become ready by calling mv.impact.acquire.FunctionInterface.imageRequestWaitFor the application can specify on which queue to wait.

EXAMPLE:

Device pDev = getDevicePointerFromSomewhere();
irc.resultQueue.write( 0 );
fi.imageRequestSingle( irc ); // request a buffer that will be stored in queue 0
irc.resultQueue.write( 1 );
fi.imageRequestSingle( irc ); // request a buffer that will be stored in queue 1
fi.imageRequestWaitFor( 500, 0 ); // wait on queue 0
fi.imageRequestWaitFor( 500, 1 ); // wait on queue 1
This class and its functions represent an actual device detected by this interface in the current sys...
Definition Device.cs:91
readonly PropertyI resultQueueCount
An integer property that defines the number of result queues to be created when the device is opened.
Definition Device.cs:664
EnumPropertyI< T > write(T value)
Writes one value to the property.
Definition EnumPropertyI.cs:449
The function interface to devices supported by this interface.
Definition FunctionInterface.cs:21
int imageRequestSingle()
Sends an image request to the mv.impact.acquire.Device driver.
Definition FunctionInterface.cs:656
int imageRequestWaitFor(int timeout_ms)
Waits for a request object to become ready.
Definition FunctionInterface.cs:1021
A helper class to control the way an image request will be processed.
Definition ImageRequestControl.cs:8
readonly PropertyI resultQueue
An integer property defining to which result queue the resulting image will be sent after the acquisi...
Definition ImageRequestControl.cs:92

This can be useful e.g. when working with 2 different settings to sort all buffer capture with setting 0 into one queue and all the others into another queue.

Note
This property will become read-only while the device is open.
See also
mv.impact.acquire.ImageRequestControl.resultQueue,
mv.impact.acquire.FunctionInterface.imageRequestWaitFor

◆ serial

◆ state

An enumerated integer property (read-only) containing the current state of this device.

This property e.g. provides information about the current state of the device. For USB devices this can e.g. indicate whether a device is currently plugged into the system or not.

Valid values for this property are defined by the enumeration mv.impact.acquire.TDeviceState.

GenICam/GenTL device specific: In order to reduce the amount of network traffic to a minimum, this property will only be updated automatically for network devices if the property mv.impact.acquire.Device.registerErrorEvent is set to mv.impact.acquire.TBoolean.bTrue (which is the default behaviour). If the IP addresses stay the same the connection is automatically re-established then once the device is detected by the driver again. However if the IP address of the device and/or the network adapter of the system it is used from changes mv.impact.acquire.DeviceManager.updateDeviceList() must be called regardless of the value of mv.impact.acquire.Device.registerErrorEvent before a device that was lost can re-establish a connection to the capture driver. Apart from that ALL GenICam/GenTL will only update this property automatically if the device is currently in use BY THIS PROCESS, so when the device has been opened. This is also to save bandwidth and resources!

◆ userControlledImageProcessingEnable

readonly PropertyIBoolean userControlledImageProcessingEnable = new PropertyIBoolean()

An enumerated integer property defining whether user controlled image processing related features shall be created under 'System Settings' or not.

Valid values for this property are defined by the enumeration mv.impact.acquire.TBoolean.

Setting this feature to mv.impact.acquire.TBoolean.bTrue will result in a separate thread being created when opening the device driver instance. The thread will decouple the host based image processing from the acquisition engine. Apart from that it will also create additional properties in the ImageProcessingControl list under SystemSettings that can be used to control the behaviour of this thread. This might be useful e.g. to make sure images can be acquired faster than they can be processed and it is not needed to processed each image.

Note
This property will become read-only while the device is open.
See also
mv.impact.acquire.SystemSettings.imageProcessingMode
mv.impact.acquire.Request.hasProcessingBeenSkipped
Since
2.14.0

Property Documentation

◆ deviceDriverFeatureList

ComponentList deviceDriverFeatureList
get

Returns a list providing access to driver library specific features.

This list does exist only once per device driver library. Changes in this list will affect all devices that are operated using this device driver library.

◆ hDev

int hDev
get

A unique identifier for this device.

Note
This handle is NOT to be confused with the id stored in the devices EEPROM The latter one represents a number stored somewhere in the physical device's EEPROM, while this handle can be assumed as a handle from a software based point of view.
Examples
Properties.cs.

◆ hDrv

int hDrv
get

A unique identifier for the functionality offered by this device.

Note
This identifier is only valid, if the device has been initialised before by a call to Device.open

◆ isInUse

bool isInUse
get

Returns the current usage status of this device.

If this function returns true, this device was not in use at the time of calling this function. A call to mv.impact.acquire.Device.open() can still fail afterwards if some other process on the system claimed the device in the time between this call and the call to mv.impact.acquire.Device.open().

See also
Device.open,
Device.close
Since
2.0.11
Returns
  • true if the device is in use by at least one process(this includes the calling process).
  • false otherwise.

◆ isOpen

bool isOpen
get

Returns the current initialisation status in this process.

If this function returns true, this only states that the current process has not opened the device in question already. A call to mv.impact.acquire.Device.open() can still fail because of some other process using this device.

See also
Device.open,
Device.close
Returns
  • true if the device is initialised(opened) in the current process.
  • false otherwise.
Examples
ContinuousSaveImage.cs.

◆ userData

UserData userData
get

Returns a reference to a helper class to handle user specific data stored in the devices non-volatile memory (if available).

Returns
A reference to a helper class to handle user specific data stored in the devices non-volatile memory(if available).

Event Documentation

◆ onDeviceWillBeClosed

DeviceWillBeClosedEventHandler onDeviceWillBeClosed

An event handler for events which are sent to all listeners just before the device driver instance will be closed.