#include <chrono>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <thread>
#include <memory>
#include <mutex>
#include <vector>
#include <apps/Common/exampleHelper.h>
#include <common/minmax.h>
#include <apps/Common/exampleHelper.h>
#include <mvIMPACT_CPP/mvIMPACT_acquire.h>
#include <mvIMPACT_CPP/mvIMPACT_acquire_GenICam.h>
#ifdef _WIN32
# define USE_DISPLAY
# include <mvDisplay/Include/mvIMPACT_acquire_display.h>
#endif
using namespace std;
static mutex s_mutex;
static bool s_boTerminated = false;
enum TTimestampTestMode
{
ttmNone = -1,
ttmPPSWithIOLine,
ttmPPSWithIOLineAndOffset,
ttmPreLoadEverySecond,
ttmPTPWithTwoCams
};
class ThreadParameter
{
#ifdef USE_DISPLAY
unique_ptr<ImageDisplayWindow> pDisplayWindow_;
#endif
public:
explicit ThreadParameter(
Device* pDev ) : pDev_( pDev ) {}
ThreadParameter( const ThreadParameter& src ) = delete;
{
return pDev_;
}
#ifdef USE_DISPLAY
void createDisplayWindow( const string& windowTitle )
{
pDisplayWindow_ = unique_ptr<ImageDisplayWindow>(
new ImageDisplayWindow( windowTitle ) );
}
{
return *pDisplayWindow_;
}
#endif
};
void writeToStdout( const string& msg )
{
lock_guard<mutex> lockedScope( s_mutex );
cout << msg << endl;
}
string getStringFromCIN( void )
{
cout << endl << ">>> ";
string cmd;
cin >> cmd;
cin.get();
return cmd;
}
TTimestampTestMode getSynchronizationModeFromUser( void )
{
TTimestampTestMode testMode = ttmNone;
bool boRun = true;
while( boRun )
{
cout << endl
<< " Please select synchronization mode" << endl
<< " ------------------------------------------" << endl
<< " [0] - (1 Camera ) - Pulse per Second controller by I/O Line" << endl
<< " [1] - (1 Camera ) - Pulse per Second controller by I/O Line with initial system time" << endl
<< " [2] - (1 Camera ) - Load the timer every second beforehand" << endl
<< " [3] - (2 Cameras) - Precision Time Protocol with two cameras (PTP)" << endl
<< " ------------------------------------------" << endl
<< endl
<< "Please enter a valid option followed by [ENTER]:" << endl
<< "- or enter 'c' followed by [ENTER] to cancel:" << endl;
const string cmd( getStringFromCIN() );
if( cmd == "c" )
{
boRun = false;
continue;
}
const int selectedMode = static_cast<int>( atoi( cmd.c_str() ) );
if( ( selectedMode <= ttmNone ) || ( selectedMode > ttmPTPWithTwoCams ) )
{
cout << "Invalid selection" << endl;
continue;
}
testMode = static_cast<TTimestampTestMode>( selectedMode );
boRun = false;
}
return testMode;
}
void loadDefaultUserSet(
Device* pDev )
{
usc.userSetSelector.writeS( "Default" );
usc.userSetLoad.call();
cout <<
"Loading default UserSet of Device " << pDev->
serial.
read() <<
"(" << pDev->
product <<
")" << endl;
}
std::string printHumanReadableUnixTime( unsigned long long time )
{
time_t rawtime = ( time_t )time;
std::time_t t = std::time( &rawtime );
char mbstr[100];
std::strftime( mbstr, sizeof( mbstr ), "%A %c", std::localtime( &t ) );
return std::string( mbstr );
}
bool testModeRequiresSecondCamera( TTimestampTestMode type )
{
return type == TTimestampTestMode::ttmPTPWithTwoCams;
}
void printPulsePTPOnLine4( void )
{
cout << " ---------------------------------------------------" << endl
<< " Attention 'Please connect IO Lines as follows' " << endl
<< " ---------------------------------------------------" << endl
<< " |\\ |---------| " << endl
<< " | \\| | Line4 Input " << endl
<< " | | Slave |---------------|" << endl
<< " | /| | |" << endl
<< " |/ |---------| |" << endl
<< " |" << endl
<< " |\\ |---------| |" << endl
<< " | \\| | Line4 Input |" << endl
<< " | | Master |---------------X" << endl
<< " | /| |---------------|" << endl
<< " |/ |---------| Line0 Output" << endl
<< endl;
}
void printPulseGeneratorOnLine4( void )
{
cout << " ---------------------------------------------------" << endl
<< " Attention 'Please connect IO Lines as follows' " << endl
<< " ---------------------------------------------------" << endl
<< " |\\ |---------| |----------|" << endl
<< " | \\| | Line4 Input | |" << endl
<< " | | MV0 |---------------------| _|1s|_ |" << endl
<< " | /| | | Pulse |" << endl
<< " |/ |---------| |----------|" << endl
<< endl;
}
void printPulseGeneratorWarning( void )
{
cout << " ---------------------------------------------------" << endl
<< " Attention 'External Pulse Generator is required!' " << endl
<< " ---------------------------------------------------" << endl
<< " This example requires an external GPS PPS pulse generator" << endl
<< " or any other equivalent pulse generator which outputs" << endl
<< " equidistant pulses every second. To simply execute the" << endl
<< " example, a second camera can be used as pulse generator." << endl
<< " Therefore a timer can be programmed to set a cameras output" << endl
<< endl;
}
void printPTPWarning( void )
{
cout << " -----------------------------------------------------" << endl
<< " Attention 'IEEE1588 compliant Hardware is required!'" << endl
<< " -----------------------------------------------------" << endl
<< " This example requires IEEE1588 compliant switches and" << endl
<< " clocks to guarantee a low latency high precision time" << endl
<< " stamp synchronization. Otherwise the synchronization might" << endl
<< " be inaccurate." << endl
<< endl;
}
void liveThread( shared_ptr<ThreadParameter> pParameter )
{
Device* pDev = pParameter->device();
while( ( result =
static_cast<TDMR_ERROR>( fi.imageRequestSingle() ) ) == DMR_NO_ERROR ) {};
if( result != DEV_NO_FREE_REQUEST_AVAILABLE )
{
lock_guard<mutex> lockedScope( s_mutex );
cout << "'FunctionInterface.imageRequestSingle' returned with an unexpected result: " << result
<< "(" << ImpactAcquireException::getErrorCodeAsString( result ) << ")" << endl;
}
manuallyStartAcquisitionIfNeeded( pDev, fi );
const unsigned int timeout_ms = { 500 };
unsigned int cnt = { 0 };
while( !s_boTerminated )
{
requestNr = fi.imageRequestWaitFor( timeout_ms );
if( fi.isRequestNrValid( requestNr ) )
{
pRequest = fi.getRequest( requestNr );
{
++cnt;
if( cnt % 100 == 0 )
{
lock_guard<mutex> lockedScope( s_mutex );
<< ": " << statistics.framesPerSecond.name() << ": " << statistics.framesPerSecond.readS()
<< ", " << statistics.errorCount.name() << ": " << statistics.errorCount.readS()
<< ", " << statistics.captureTime_s.name() << ": " << statistics.captureTime_s.readS() << endl;
}
#ifdef USE_DISPLAY
ImageDisplay& display = pParameter->displayWindow().GetImageDisplay();
#endif
}
else
{
}
if( fi.isRequestNrValid( lastRequestNr ) )
{
fi.imageRequestUnlock( lastRequestNr );
}
lastRequestNr = requestNr;
fi.imageRequestSingle();
}
}
manuallyStopAcquisitionIfNeeded( pDev, fi );
#ifdef USE_DISPLAY
pParameter->displayWindow().GetImageDisplay().RemoveImage();
#endif
if( fi.isRequestNrValid( requestNr ) )
{
fi.imageRequestUnlock( requestNr );
}
fi.imageRequestReset( 0, 0 );
}
{
cdc.chunkModeActive.write( TBoolean::bTrue );
cdc.chunkSelector.writeS( "Timestamp" );
cdc.chunkEnable.write( TBoolean::bTrue );
acqc.triggerSelector.writeS( "FrameStart" );
acqc.triggerMode.writeS( "On" );
acqc.triggerSource.writeS( "Line4" );
acqc.triggerActivation.writeS( "RisingEdge" );
if( isMaster == TBoolean::bTrue )
{
catc.timerSelector.writeS( "Timer1" );
catc.timerTriggerSource.writeS( "Timer2End" );
catc.timerDuration.write( 1000000.0 );
catc.timerDelay.write( 0.0 );
catc.timerSelector.writeS( "Timer2" );
catc.timerTriggerSource.writeS( "Timer1End" );
catc.timerDuration.write( 10000.0 );
catc.timerDelay.write( 0.0 );
dioc.lineSelector.writeS( "Line0" );
dioc.lineSource.writeS( "Timer2Active" );
}
}
{
static const int s_SECOND = 1;
static const int s_PTP_BEST_MASTER_CLOCK_WAIT_TIME = 15;
loadDefaultUserSet( pDev0 );
loadDefaultUserSet( pDev1 );
printPTPWarning();
cout << " This example shows a simple way to set the timestamps" << endl
<< " of the cameras internal timer. It uses a drift compensation" << endl
<< " via a closed loop controller. The system time is set at" << endl
<< " the beginning on the previously determined master camera only." << endl
<< endl;
try
{
tlc0.ptpEnable.write( TBoolean::bTrue );
tlc1.ptpEnable.write( TBoolean::bTrue );
for( int i = 0; i < s_PTP_BEST_MASTER_CLOCK_WAIT_TIME * s_SECOND; i++ )
{
this_thread::sleep_for( chrono::milliseconds( s_SECOND * 1000 ) );
tlc0.ptpDataSetLatch.call();
cout <<
"cam0 '" << pDev0->
serial.
readS() <<
"', '" << pDev0->
product.
readS() <<
"' has ptp state '" << tlc0.ptpStatus.readS() <<
"'" << endl;
if( tlc0.ptpStatus.readS() == "Master" )
{
pDevMaster = pDev0;
pDevSlave = pDev1;
break;
}
cout <<
"cam1 '" << pDev1->
serial.
readS() <<
"', '" << pDev1->
product.
readS() <<
"' has ptp state '" << tlc1.ptpStatus.readS() <<
"'" << endl;
if( tlc0.ptpStatus.readS() == "Slave" )
{
pDevMaster = pDev1;
pDevSlave = pDev0;
break;
}
}
tlc0.ptpDataSetLatch.call();
tlc1.ptpDataSetLatch.call();
if( pDevSlave == nullptr || pDevMaster == nullptr )
{
cout << "we could not determine which camera is master and which one is slave" << endl;
return;
}
if( tlc1.ptpStatus.readS().compare( tlc0.ptpStatus.readS() ) == 0 )
{
cout << "both cameras had the same state '" << tlc0.ptpStatus.readS() << "'.something went wrong!" << endl;
return;
}
printPulsePTPOnLine4();
cout <<
"Master is " << pDevMaster->
serial.
readS() << endl;
cout <<
"Slave is " << pDevSlave->
serial.
readS() << endl;
cout << "please contact IOs as mentioned above" << endl;
cout << "Press [ENTER] to proceed with PTP example" << endl;
cin.get();
tlc0.ptpEnable.write( TBoolean::bFalse );
tlc1.ptpEnable.write( TBoolean::bFalse );
const unsigned long long unixTimeSystem = static_cast<unsigned long long>( std::chrono::duration_cast<std::chrono::seconds>( chrono::system_clock::now().time_since_epoch() ).count() );
const unsigned long long gevsTimeTickFrequencyValue = static_cast<unsigned long long>( tlcMaster.gevTimestampTickFrequency.read() );
const unsigned long long cameraTimeSystem = unixTimeSystem * gevsTimeTickFrequencyValue;
dcMaster.mvTimestampResetValue.write( static_cast<int64_type>( cameraTimeSystem ) );
dcSlave.mvTimestampResetValue.write( static_cast<int64_type>( 0 ) );
dcMaster.timestampReset.call();
dcSlave.timestampReset.call();
tlcMaster.ptpEnable.write( TBoolean::bTrue );
tlcSlave.ptpEnable.write( TBoolean::bTrue );
for( int i = 0; i < s_PTP_BEST_MASTER_CLOCK_WAIT_TIME * s_SECOND; i++ )
{
this_thread::sleep_for( chrono::milliseconds( s_SECOND * 1000 ) );
tlcMaster.ptpDataSetLatch.call();
tlcSlave.ptpDataSetLatch.call();
cout << "Master has ptp state '" << tlcMaster.ptpStatus.readS() << "'!" << endl;
cout << "Slave has ptp state '" << tlcSlave.ptpStatus.readS() << "'!" << endl;
if( ( tlcMaster.ptpStatus.readS() == "Master" ) &&
( tlcSlave.ptpStatus.readS() == "Slave" ) )
{
break;
}
}
ConfigureCameraForPTPTestMode( pDevMaster, TBoolean::bTrue );
ConfigureCameraForPTPTestMode( pDevSlave, TBoolean::bFalse );
dcMaster.deviceLinkThroughputLimitMode.write( TBoolean::bTrue );
dcMaster.deviceLinkThroughputLimit.write( dcMaster.deviceLinkSpeed.read() / 2 );
dcSlave.deviceLinkThroughputLimitMode.write( TBoolean::bTrue );
dcSlave.deviceLinkThroughputLimit.write( dcSlave.deviceLinkSpeed.read() / 2 );
map<shared_ptr<ThreadParameter>, shared_ptr<thread>> threads;
shared_ptr<ThreadParameter> pParameterSlave = make_shared<ThreadParameter>( pDevSlave );
shared_ptr<ThreadParameter> pParameterMaster = make_shared<ThreadParameter>( pDevMaster );
#ifdef USE_DISPLAY
pParameterSlave->createDisplayWindow(
"mvIMPACT_acquire sample, Device " + pDevSlave->
serial.
read() );
pParameterMaster->createDisplayWindow(
"mvIMPACT_acquire sample, Device " + pDevMaster->
serial.
read() );
#endif
threads[pParameterSlave] = make_shared<thread>( liveThread, pParameterSlave );
threads[pParameterMaster] = make_shared<thread>( liveThread, pParameterMaster );
writeToStdout( "Press [ENTER] to end the acquisition" );
if( getchar() == EOF )
{
writeToStdout( "'getchar()' did return EOF..." );
}
writeToStdout( "Terminating live threads..." );
s_boTerminated = true;
for( auto& it : threads )
{
it.second->join();
}
dcMaster.deviceLinkThroughputLimitMode.write( TBoolean::bFalse );
dcSlave.deviceLinkThroughputLimitMode.write( TBoolean::bFalse );
}
{
cout << endl;
cout << endl;
}
}
void PulsePerSecond(
Device* pDev,
bool withPreLoad )
{
static const int s_TIME_STEP_WIDTH_MS = 100;
static const int s_TEST_TIME_LOOP_COUNTER = 120 * s_TIME_STEP_WIDTH_MS / 10;
loadDefaultUserSet( pDev );
printPulseGeneratorWarning();
printPulseGeneratorOnLine4();
cout << "please contact I/Os as mentioned above" << endl
<< "The example takes about 2 minutes." << endl
<< "Press [ENTER] to proceed with PPS example" << endl;
cin.get();
cout << " This example shows a simple way to set the time stamps" << endl
<< " of the cameras internal timer. It uses a drift compensation" << endl
<< " via a closed loop controller. The offset is optionally set at" << endl
<< " the beginning." << endl << endl;
try
{
if( dc.mvTimestampPPSSync.isValid() == false || evc.eventLine4RisingEdge.isValid() == false ||
( withPreLoad == true && dc.mvTimestampResetValue.isValid() == false ) || tlc.gevTimestampTickFrequency.isValid() == false ||
dc.timestampReset.isValid() == false )
{
cout << " A required Property for this example is not supported by the camera" << endl;
return;
}
evc.eventSelector.writeS( "Line4RisingEdge" );
evc.eventNotification.writeS( "On" );
const unsigned long long unixTimeSystem = static_cast<unsigned long long>( std::chrono::duration_cast<std::chrono::seconds>( chrono::system_clock::now().time_since_epoch() ).count() );
const unsigned long long gevsTimeTickFrequencyValue = static_cast<unsigned long long>( tlc.gevTimestampTickFrequency.read() );
const unsigned long long cameraTimeSystem = unixTimeSystem * gevsTimeTickFrequencyValue;
if( withPreLoad == true )
{
dc.mvTimestampResetValue.write( static_cast<int64_type>( cameraTimeSystem ) );
dc.timestampReset.call();
}
dc.mvTimestampPPSSync.writeS( "Line4" );
for( int i = 0; i < s_TEST_TIME_LOOP_COUNTER; i++ )
{
this_thread::sleep_for( chrono::milliseconds( s_TIME_STEP_WIDTH_MS ) );
static unsigned long long s_lastVal = 0;
unsigned long long newVal = static_cast<unsigned long long>( evc.eventLine4RisingEdgeTimestamp.read() );
if( s_lastVal != newVal )
{
if( s_lastVal != 0 )
{
const double difference = ( ( static_cast<double>( newVal ) - static_cast<double>( s_lastVal ) ) / static_cast<double>( gevsTimeTickFrequencyValue ) - 1.0 ) * 1000000.0;
cout << "Got time stamp " << printHumanReadableUnixTime( newVal ) << " ( " << newVal << " ), " << " difference from 1s is: " << difference << "us" << endl;
}
s_lastVal = newVal;
}
}
dc.mvTimestampResetValue.write( static_cast<int64_type>( 0 ) );
dc.mvTimestampPPSSync.writeS( "Off" );
}
{
cout << endl;
cout << endl;
}
}
void PreLoadSecond(
Device* pDev )
{
static const int s_TIME_STEP_WIDTH_MS = 100;
static const int s_TEST_TIME_LOOP_COUNTER = 120 * s_TIME_STEP_WIDTH_MS / 10;
loadDefaultUserSet( pDev );
printPulseGeneratorOnLine4();
printPulseGeneratorWarning();
cout << "please contact I/Os as mentioned above" << endl
<< "The example takes about 2 minutes." << endl
<< "Press [ENTER] to proceed with example" << endl;
cin.get();
cout << " This example shows a rough way to set the time stamps" << endl
<< " of the cameras internal timer. This example does neither a " << endl
<< " proper offset nor a drift compensation via a closed loop " << endl
<< " controller. It simply shows how a timer can be forced to a" << endl
<< " given time by simply using a pulsed signal with a " << endl
<< " previously transfered pre-loaded value. The drift can be seen" << endl
<< " when looking at the lower part of each time stamp. The difference" << endl
<< " is nearly zero the whole time because every second we set back the" << endl
<< " to our calculated next time value. In theory the difference is constant" << endl
<< " and zero. In reality we have some Jitter effects and uncertainties of the" << endl
<< " pulse generator." << endl << endl;
try
{
if( evc.eventLine4RisingEdge.isValid() == false || dc.mvTimestampResetValue.isValid() == false ||
tlc.gevTimestampTickFrequency.isValid() == false || acqc.triggerSelector.isValid() == false ||
acqc.triggerMode.isValid() == false || acqc.triggerSource.isValid() == false )
{
cout << " A required Property for this example is not provided by the camera" << endl;
return;
}
unsigned long long unixTimeSystem = static_cast<unsigned long long>( std::chrono::duration_cast<std::chrono::seconds>( chrono::system_clock::now().time_since_epoch() ).count() );
unsigned long long gevsTimeTickFrequencyValue = static_cast<unsigned long long>( tlc.gevTimestampTickFrequency.read() );
unsigned long long cameraTimeSystem = ( unixTimeSystem + 1 ) * gevsTimeTickFrequencyValue;
dc.mvTimestampResetValue.write( static_cast<int64_type>( cameraTimeSystem ) );
evc.eventSelector.writeS( "Line4RisingEdge" );
evc.eventNotification.writeS( "On" );
acqc.triggerSelector.writeS( "mvTimestampReset" );
acqc.triggerMode.writeS( "On" );
acqc.triggerSource.writeS( "Line4" );
for( int i = 0; i < s_TEST_TIME_LOOP_COUNTER; i++ )
{
this_thread::sleep_for( chrono::milliseconds( s_TIME_STEP_WIDTH_MS ) );
static unsigned long long s_lastVal = 0;
unsigned long long newVal = static_cast<unsigned long long>( evc.eventLine4RisingEdgeTimestamp.read() );
if( s_lastVal != newVal )
{
if( s_lastVal != 0 )
{
unixTimeSystem = static_cast<unsigned long long>( std::chrono::duration_cast<std::chrono::seconds>( chrono::system_clock::now().time_since_epoch() ).count() );
cameraTimeSystem = ( unixTimeSystem + 1 ) * gevsTimeTickFrequencyValue;
dc.mvTimestampResetValue.write( static_cast<int64_type>( cameraTimeSystem ) );
double difference = ( ( static_cast<double>( newVal ) - static_cast<double>( s_lastVal ) ) / static_cast<double>( gevsTimeTickFrequencyValue ) - 1.0 ) * 1000000.0;
cout << "got time stamp " << printHumanReadableUnixTime( newVal ) << " ( " << newVal << " ) " << " difference from 1s is:" << difference << "us" << endl;
}
s_lastVal = newVal;
}
}
dc.mvTimestampResetValue.write( static_cast<int64_type>( 0 ) );
acqc.triggerSelector.writeS( "mvTimestampReset" );
acqc.triggerMode.writeS( "Off" );
}
{
cout << endl;
cout << endl;
}
}
void printNotSupported(
Device* pDev )
{
cout <<
"Device " << pDev->
serial.
read() <<
"(" << pDev->
product <<
") is not supported by this sample" << endl;
cout << "Press [ENTER] to end the application" << endl;
cin.get();
}
int main( void )
{
TTimestampTestMode selection = getSynchronizationModeFromUser();
if( selection == ttmNone )
{
cout << "Press [ENTER] to end the application" << endl;
cin.get();
return 0;
}
cout << "Please select the camera you want to use:" << endl;
Device* pDev0 = getDeviceFromUserInput( devMgr );
if( pDev0 == nullptr )
{
cout << "Unable to continue! Press [ENTER] to end the application" << endl;
cin.get();
return 1;
}
{
printNotSupported( pDev0 );
return 1;
}
if( testModeRequiresSecondCamera( selection ) )
{
cout << "This mode requires a second camera." << endl;
cout << "Please select the camera you want to use:" << endl;
pDev1 = getDeviceFromUserInput( devMgr );
if( pDev1 == nullptr )
{
cout << "Unable to continue! Press [ENTER] to end the application" << endl;
cin.get();
return 1;
}
{
printNotSupported( pDev0 );
return 1;
}
{
cout << "Its not allowed to use the same device as second device! Press [ENTER] to end the application" << endl;
cin.get();
return 1;
}
}
switch( selection )
{
case TTimestampTestMode::ttmPPSWithIOLine:
PulsePerSecond( pDev0, false );
break;
case TTimestampTestMode::ttmPPSWithIOLineAndOffset:
PulsePerSecond( pDev0, true );
break;
case TTimestampTestMode::ttmPreLoadEverySecond:
PreLoadSecond( pDev0 );
break;
case TTimestampTestMode::ttmPTPWithTwoCams:
PTPWithTwoCams( pDev0, pDev1 );
break;
default:
cout << "Invalid selection" << endl;
break;
}
cout << "Press [ENTER] to end the application" << endl;
cin.get();
return 0;
}
bool isValid(void) const
Checks if the internal component referenced by this object is still valid.
Definition: mvIMPACT_acquire.h:1606
Grants access to devices that can be operated by this software interface.
Definition: mvIMPACT_acquire.h:6990
This class and its functions represent an actual device detected by this interface in the current sys...
Definition: mvIMPACT_acquire.h:5951
PropertyS product
A string property (read-only) containing the product name of this device.
Definition: mvIMPACT_acquire.h:6369
PropertyS serial
A string property (read-only) containing the serial number of this device.
Definition: mvIMPACT_acquire.h:6383
void open(void)
Opens a device.
Definition: mvIMPACT_acquire.h:6252
PropertyIDeviceInterfaceLayout interfaceLayout
An enumerated integer property which can be used to define which interface layout shall be used when ...
Definition: mvIMPACT_acquire.h:6476
PropertyIAcquisitionStartStopBehaviour acquisitionStartStopBehaviour
An enumerated integer property defining the start/stop behaviour during acquisition of this driver in...
Definition: mvIMPACT_acquire.h:6621
ZYX read(int index=0) const
Reads a value from a property.
Definition: mvIMPACT_acquire.h:4775
ZYX read(int index=0) const
Reads a value from a property.
Definition: mvIMPACT_acquire.h:4173
The function interface to devices supported by this interface.
Definition: mvIMPACT_acquire.h:10473
Category for the acquisition and trigger control features.
Definition: mvIMPACT_acquire_GenICam.h:2098
Category that contains the Chunk Data control features.
Definition: mvIMPACT_acquire_GenICam.h:11794
Category that contains the Counter and Timer control features.
Definition: mvIMPACT_acquire_GenICam.h:4270
Category for device information and control.
Definition: mvIMPACT_acquire_GenICam.h:82
Category that contains the digital input and output control features.
Definition: mvIMPACT_acquire_GenICam.h:3893
Category that contains Event control features.
Definition: mvIMPACT_acquire_GenICam.h:5620
Category that contains the transport Layer control features.
Definition: mvIMPACT_acquire_GenICam.h:13024
Category that contains the User Set control features.
Definition: mvIMPACT_acquire_GenICam.h:9608
A base class for exceptions generated by Impact Acquire.
Definition: mvIMPACT_acquire.h:251
std::string getErrorCodeAsString(void) const
Returns a string representation of the error associated with the exception.
Definition: mvIMPACT_acquire.h:283
std::string read(int index=0) const
Reads a value from a property.
Definition: mvIMPACT_acquire.h:5162
std::string readS(int index=0, const std::string &format="") const
Reads data from this property as a string.
Definition: mvIMPACT_acquire.h:3216
Contains information about a captured buffer.
Definition: mvIMPACT_acquire.h:8449
PropertyI64 infoFrameID
A 64 bit integer property (read-only) containing a frame identifier.
Definition: mvIMPACT_acquire.h:9572
bool isOK(void) const
Convenience function to check if a request has been processed successfully.
Definition: mvIMPACT_acquire.h:9224
PropertyIRequestResult requestResult
An enumerated integer property (read-only) defining the result of this request.
Definition: mvIMPACT_acquire.h:9530
PropertyI64 chunkTimestamp
A 64 bit integer property (read-only) containing the timestamp value of the internal frame start sign...
Definition: mvIMPACT_acquire.h:9813
PropertyI64 infoTimeStamp_us
A 64 bit integer property (read-only) containing a timestamp to define the exact time this image has ...
Definition: mvIMPACT_acquire.h:9636
Contains basic statistical information.
Definition: mvIMPACT_acquire.h:14201
A class that can be used to display images in a window.
Definition: mvIMPACT_acquire_display.h:585
A class that can be used for displaying images within existing windows or GUI elements that can provi...
Definition: mvIMPACT_acquire_display.h:175
void SetImage(const void *pData, int width, int height, int bitsPerPixel, int pitch)
Sets the next image to display.
Definition: mvIMPACT_acquire_display.h:295
void Update(void) const
Immediately redraws the current image.
Definition: mvIMPACT_acquire_display.h:384
TDMR_ERROR
Errors reported by the device manager.
Definition: mvDriverBaseEnums.h:2591
const int INVALID_ID
A constant to check for an invalid ID returned from the property handling module.
Definition: mvPropHandlingDatatypes.h:62
TBoolean
Defines a Boolean value type.
Definition: mvDriverBaseEnums.h:577
@ DMR_NO_ERROR
The function call was executed successfully.
Definition: mvDriverBaseEnums.h:2596
This namespace contains classes and functions belonging to the GenICam specific part of the image acq...
Definition: mvIMPACT_acquire.h:23371
This namespace contains classes and functions that can be used to display images.
This namespace contains classes and functions belonging to the image acquisition module of this SDK.
Definition: mvCommonDataTypes.h:30