Impact Acquire SDK Java
CameraDescriptionBase Class Reference

A base class to describe a camera (Device specific interface layout only) connected to a frame grabber (deprecated. More...

Inheritance diagram for CameraDescriptionBase:
[legend]

Public Member Functions

int copyDescription (String newName)
 Creates a new camera description list as a copy of the current one.
 
synchronized void delete ()
 
int exportDescription ()
 Stores the current camera description on disk.
 
PropertyI getAoiHeight ()
 An integer property defining the number of active lines to capture from the camera.
 
PropertyI getAoiStartX ()
 An integer property defining the X-offset in pixels to the first active pixel to capture.
 
PropertyI getAoiStartY ()
 An integer property defining the Y-offset in lines to the first active line to capture.
 
PropertyI getAoiWidth ()
 An integer property defining the number of active pixels to capture per line.
 
String getClassName ()
 Returns the class this description is belonging to.
 
PropertyI getInterlacedType ()
 An enumerated integer property defining how the camera transmits image data.
 
PropertyS getName ()
 A string property read-only containing the name of this camera description list.
 
PropertyI getVideoOutput ()
 An enumerated integer property defining the type of video outputs this camera offers.
 
int hObj ()
 Returns a unique identifier for the component collection referenced by this object.
 
int importDescription ()
 Updates a camera description with the data stored in a previous session or with the original default data.
 
ComponentCollection restoreDefault ()
 Restores the default for every component of this collection.
 

Protected Member Functions

 CameraDescriptionBase (long cPtr, boolean cMemoryOwn)
 
void finalize ()
 

Static Protected Member Functions

static long swigRelease (CameraDescriptionBase obj)
 
static long swigRelease (ComponentCollection obj)
 

Protected Attributes

transient boolean swigCMemOwn
 

Detailed Description

A base class to describe a camera (Device specific interface layout only) connected to a frame grabber (deprecated.

Deprecated
Beginning with the release of 3.0.0 of Impact Acquire everything specifically related to frame grabber boards will be considered as deprecated and might be removed without further notice!

A camera description object provides an abstract way to prepare the capture device (e.g. a frame grabber) for the connected imaging device (e.g. a camera).

By selecting one of the available camera descriptions the underlying hardware will use the information provided in the camera description to prepare the image capture. Therefore it is crucial to select a camera description that matches the connected video signal as close as possible. If no description for the camera connected to a frame grabber is available a new description should be generated from one of the existing ones. This can be achieved by calling the function mvIMPACT.acquire.CameraDescriptionBase.copyDescription. A new camera description with the name that is passed to the function will be created.

Note
The name must be unique. There can't be two descriptions with the same name belonging to the same generic class (i.e. 'Standard' or 'CameraLink'®). However it's perfectly legal to have a camera description for standard analogue video signals and one for e.g. CameraLink® signals with the same name.

This new description will be an exact copy of the one the copy function has been executed for. After creation this description can be selected e.g. by setting the property mvIMPACT.acquire.CameraSettingsFrameGrabber.getType() to the name of the new description.

Note
Please note that the name passed to the property mvIMPACT.acquire.CameraSettingsFrameGrabber.getType() does NOT exactly correspond to the name assigned to the new camera description. It is a combination of the class the camera is belonging to (e.g. 'Standard') and the actual name. So to select a camera description the name must be build from the return value of a call to mvIMPACT.acquire.CameraDescriptionBase.getClassName, an underscore ('_') and the actual name of the description: <class name>_<desc. name>

Example: For a standard description with the name 'MyCam' the full name would be 'Standard_MyCam'.

import mvIMPACT.acquire.*;
//-----------------------------------------------------------------------------
public class CameraDescriptionManagerExample
//-----------------------------------------------------------------------------
{
//=============================================================================
//=== Static member functions =================================================
//=============================================================================
static
{
try
{
System.loadLibrary( "mvIMPACT_Acquire.java" );
}
catch( UnsatisfiedLinkError e )
{
System.err.println( "Native code library failed to load. Make sure the 'mvIMPACT_Acquire.java' library can be found in the systems search path.\n" + e );
System.exit( 1 );
}
}
//-----------------------------------------------------------------------------
public static void main( String[] args )
//-----------------------------------------------------------------------------
{
DeviceManager devMgr = new DeviceManager();
Device pDev = mvIMPACT.acquire.examples.helper.DeviceAccess.getDeviceFromUserInput( devMgr );
if( pDev == null )
{
System.out.print( "Unable to continue!" );
mvIMPACT.acquire.examples.helper.DeviceAccess.waitForENTER();
System.exit( 1 );
}
System.out.println( "Initialising the device. This might take some time..." );
try
{
pDev.open();
}
catch( ImpactAcquireException e )
{
// this e.g. might happen if the same device is already opened in another process...
System.out.println( "An error occurred while opening device " + pDev.getSerial().read() +
"(error code: " + e.getMessage() + ")." );
mvIMPACT.acquire.examples.helper.DeviceAccess.waitForENTER();
System.exit( 1 );
}
try
{
// the next line will raise an exception if this device does not
// support camera descriptions (e.g. if it is a USB camera rather than a frame grabber)
CameraDescriptionManager cdm = new CameraDescriptionManager( pDev );
CameraDescriptionStandard pCam = cdm.cameraDescriptionStandard( "Generic" );
pCam.copyDescription( "MyCam" );
// Get access to the newly created description
CameraDescriptionStandard pMyCam = cdm.cameraDescriptionStandard( "MyCam" );
// Modify something
pMyCam.getVideoStandard().write( TVideoStandard.vsRS170 );
pMyCam.getScanStandard().write( TScanStandard.ssITU601 );
// now save the description to make it available in all future sessions
pMyCam.exportDescription();
// select the newly created description
CameraSettingsFrameGrabber cs = new CameraSettingsFrameGrabber( pDev );
// the name for this property is always a combination of the class the camera
// description is belonging to and the actual name:
cs.getType().writeS( pMyCam.getClassName() + "_" + pMyCam.getName().read() );
}
catch( ImpactAcquireException e )
{
System.out.println( "An error occurred: " + e.getMessage() + "." );
mvIMPACT.acquire.examples.helper.DeviceAccess.waitForENTER();
System.exit( 1 );
}
}
}
Note
This class will only be available if mvIMPACT.acquire.Device.getInterfaceLayout() is set to mvIMPACT.acquire.TDeviceInterfaceLayout.dilDeviceSpecific before the device is opened.

Constructor & Destructor Documentation

◆ CameraDescriptionBase()

CameraDescriptionBase ( long cPtr,
boolean cMemoryOwn )
protected

Member Function Documentation

◆ copyDescription()

int copyDescription ( String newName)

Creates a new camera description list as a copy of the current one.

This function can be used to create a new camera description list. It will create a deep copy of the properties referenced by this camera description and will append the new description to the list of camera descriptions.

Note
This will NOT store the new description permanently. After the driver has been closed, this data will be lost. To store the new list in a way that it will be available the next time the driver/device is opened again, mvIMPACT.acquire.CameraDescriptionBase.exportDescription must be called with the handle of the newly created description after this function.
See also
mvIMPACT.acquire.CameraDescriptionBase.exportDescription,
mvIMPACT.acquire.CameraDescriptionBase.importDescription
Returns
Parameters
newName[in] The name for the newly created camera description. This name MUST NOT match a description already existing.

◆ delete()

◆ exportDescription()

int exportDescription ( )

Stores the current camera description on disk.

This function can be used to store the current settings of a camera description permanently so that the next time the driver is initialized these settings are restored.

When exporting a camera description a file in XML format will be written to disk.

  • On Windows® camera descriptions will be stored under PUBLIC%/Documents/Balluff/ImpactAcquire/CameraFiles (or MVIMPACT_ACQUIRE_DATA_DIR%/CameraFiles, which will point to the same folder)
  • On Unix based systems this directory will be /opt/ImpactAcquire/data/camerafiles
  • On other platforms these files will end up in the current working directory.

This behaviour can be modified by writing the property mvIMPACT.acquire.Device.getCustomDataDirectory() before initialising the device.

See also
mvIMPACT.acquire.CameraDescriptionBase.copyDescription,
mvIMPACT.acquire.CameraDescriptionBase.importDescription
Returns

◆ finalize()

◆ getAoiHeight()

PropertyI getAoiHeight ( )

An integer property defining the number of active lines to capture from the camera.

◆ getAoiStartX()

PropertyI getAoiStartX ( )

An integer property defining the X-offset in pixels to the first active pixel to capture.

◆ getAoiStartY()

PropertyI getAoiStartY ( )

An integer property defining the Y-offset in lines to the first active line to capture.

◆ getAoiWidth()

PropertyI getAoiWidth ( )

An integer property defining the number of active pixels to capture per line.

◆ getClassName()

String getClassName ( )

Returns the class this description is belonging to.

Returns
The class this description is belonging to.

◆ getInterlacedType()

PropertyI getInterlacedType ( )

An enumerated integer property defining how the camera transmits image data.

Valid values for this property are defined by the enumeration mvIMPACT.acquire.TCameraInterlacedType.

◆ getName()

PropertyS getName ( )

A string property read-only containing the name of this camera description list.

◆ getVideoOutput()

PropertyI getVideoOutput ( )

An enumerated integer property defining the type of video outputs this camera offers.

Valid values for this property are defined by the enumeration mvIMPACT.acquire.TCameraOutput.

Note
This property will be (read-only) for camera descriptions of type mvIMPACT.acquire.CameraDescriptionCameraLink and mvIMPACT.acquire.CameraDescriptionSDI as for these camera types the video output depends on certain other parameters according to the corresponding standard.

◆ hObj()

int hObj ( )
inherited

Returns a unique identifier for the component collection referenced by this object.

This handle will always reference an object of type mvIMPACT.acquire.ComponentList.

Returns
A unique identifier for the component referenced by this object.

◆ importDescription()

int importDescription ( )

Updates a camera description with the data stored in a previous session or with the original default data.

When importing a camera description the device driver will try to retrieve the parameters needed from a XML file.

  • On Windows® camera descriptions MUST be stored under PUBLIC%/Documents/Balluff/ImpactAcquire/CameraFiles (or MVIMPACT_ACQUIRE_DATA_DIR%/CameraFiles, which will point to the same folder)
  • n Unix based systems this directory will be /opt/ImpactAcquire/data/camerafiles
  • On other platforms these files MUST be located in the current working directory.

This behaviour can be modified by writing the property mvIMPACT.acquire.Device.getCustomDataDirectory() before initialising the device. To get access to an XML description file within the application, these file must be copied to this directory BEFORE the device is initialized. During the initialisation process the device driver will process every file located under this location and will add them to the internal list of descriptions. Every camera located during this process and also descriptions created later on during the program operation can be selected via the property mvIMPACT.acquire.CameraSettingsFrameGrabber.getType().

Note
In order not to bloat the device driver with redundant data it's wise only to store the descriptions needed for the application to run under this location.
Only camera descriptions supported by the capture device will be added to the device drivers internal list and will therefore be accessible via the mvIMPACT.acquire.CameraDescriptionManager.

To restore the default values valid during the driver was initialized the function mvIMPACT.acquire.ComponentCollection.restoreDefault can be used as well.

See also
mvIMPACT.acquire.CameraDescriptionBase.exportDescription,
mvIMPACT.acquire.CameraDescriptionBase.copyDescription
Returns

◆ restoreDefault()

ComponentCollection restoreDefault ( )
inherited

Restores the default for every component of this collection.

Calling this function will restore the default value for every component belonging to this collection.

Note
The caller must have the right to modify the component. Otherwise an exception will be thrown.
Returns
A const reference to the component.

◆ swigRelease() [1/2]

static long swigRelease ( CameraDescriptionBase obj)
staticprotected

◆ swigRelease() [2/2]

static long swigRelease ( ComponentCollection obj)
staticprotectedinherited

Member Data Documentation

◆ swigCMemOwn

transient boolean swigCMemOwn
protectedinherited