Changes the configuration of the camera so that it is triggered by the first available action command. More...
#include <pylon/gige/ActionTriggerConfiguration.h>
Public Member Functions | |
virtual void | OnAttach (CInstantCamera &camera) |
This method is called before a Pylon Device (Pylon::IPylonDevice) is attached by calling the Instant Camera object's Attach() method. More... | |
virtual void | OnAttached (CInstantCamera &camera) |
This method is called after a Pylon Device (Pylon::IPylonDevice) has been attached by calling the Instant Camera object's Attach() method. More... | |
virtual void | OnDetach (CInstantCamera &camera) |
This method is called before the attached Pylon Device is detached from the Instant Camera object. More... | |
virtual void | OnDetached (CInstantCamera &camera) |
This method is called after the attached Pylon Device has been detached from the Instant Camera object. More... | |
virtual void | OnDestroy (CInstantCamera &camera) |
This method is called before the attached Pylon Device is destroyed. More... | |
virtual void | OnDestroyed (CInstantCamera &camera) |
This method is called after the attached Pylon Device has been destroyed. More... | |
virtual void | OnOpen (CInstantCamera &camera) |
This method is called before the attached Pylon Device is opened. More... | |
virtual void | OnClose (CInstantCamera &camera) |
This method is called before the attached Pylon Device is closed. More... | |
virtual void | OnClosed (CInstantCamera &camera) |
This method is called after the attached Pylon Device has been closed. More... | |
virtual void | OnGrabStart (CInstantCamera &camera) |
This method is called before a grab session is started. More... | |
virtual void | OnGrabStarted (CInstantCamera &camera) |
This method is called after a grab session has been started. More... | |
virtual void | OnGrabStop (CInstantCamera &camera) |
This method is called before a grab session is stopped. More... | |
virtual void | OnGrabStopped (CInstantCamera &camera) |
This method is called after a grab session has been stopped. More... | |
virtual void | OnGrabError (CInstantCamera &camera, const char *errorMessage) |
This method is called when an exception has been triggered during grabbing. More... | |
virtual void | OnCameraDeviceRemoved (CInstantCamera &camera) |
This method is called when a camera device removal from the PC has been detected. More... | |
virtual void | OnConfigurationRegistered (CInstantCamera &camera) |
This method is called when the configuration event handler has been registered. More... | |
virtual void | OnConfigurationDeregistered (CInstantCamera &camera) |
This method is called when the configuration event handler has been deregistered. More... | |
virtual void | DestroyConfiguration () |
Destroys the configuration event handler. More... | |
Static Public Member Functions | |
static void | ApplyConfiguration (GenApi::INodeMap &deviceNodeMap, const ActionParameter &p) |
Apply action trigger configuration to a given camera device node map. | |
static void | ApplyConfiguration (GenApi::INodeMap &deviceNodeMap, uint32_t DeviceKey, uint32_t GroupKey, uint32_t GroupMask=AllGroupMask) |
Apply action trigger configuration to a given camera device node map. | |
Changes the configuration of the camera so that it is triggered by the first available action command.
This configuration enables the frame start trigger and disables all other trigger types. As trigger source the first available action command is selected, i.e., the camera will be triggered by action commands issued by the application.
In contrast to using the software trigger triggering with action commands allows to trigger multiple cameras simultaneously.
Either register this configuration as an Instant Camera's event handler or apply the configuration to the node map of an opened pylon device using one of the ApplyConfiguration methods.
The CActionTriggerConfiguration is provided as header-only file. The code can be copied and modified for creating own configuration classes.
|
inlinevirtualinherited |
Destroys the configuration event handler.
|
inlinevirtualinherited |
This method is called before a Pylon Device (Pylon::IPylonDevice) is attached by calling the Instant Camera object's Attach() method.
This method can not be used for detecting that a camera device has been attached to the PC. The camera's Attach() method must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called after a Pylon Device (Pylon::IPylonDevice) has been attached by calling the Instant Camera object's Attach() method.
This method can not be used for detecting that a camera device has been attached to the PC. The camera's Attach() method must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called when a camera device removal from the PC has been detected.
The Pylon Device attached to the Instant Camera is not operable after this event. After it is made sure that no access to the Pylon Device or any of its node maps is made anymore the Pylon Device should be destroyed using InstantCamera::DeviceDestroy(). The access to the Pylon Device can be protected using the lock provided by GetLock(), e.g. when accessing parameters.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called before the attached Pylon Device is closed.
Camera Close must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called after the attached Pylon Device has been closed.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called when the configuration event handler has been deregistered.
The configuration event handler is automatically deregistered when the Instant Camera object is destroyed.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called when the configuration event handler has been registered.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called before the attached Pylon Device is destroyed.
Camera DestroyDevice must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called after the attached Pylon Device has been destroyed.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called before the attached Pylon Device is detached from the Instant Camera object.
The camera's Detach() method must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called after the attached Pylon Device has been detached from the Instant Camera object.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called when an exception has been triggered during grabbing.
An exception has been triggered by a grab thread. The grab will be stopped after this event call.
[in] | camera | The source of the call. |
[in] | errorMessage | The message of the exception that signaled an error during grabbing. |
|
inlinevirtualinherited |
This method is called before a grab session is started.
Camera StartGrabbing must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called after a grab session has been started.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called before a grab session is stopped.
Camera StopGrabbing must not be called from here or from subsequent calls to avoid infinite recursion.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called after a grab session has been stopped.
[in] | camera | The source of the call. |
|
inlinevirtualinherited |
This method is called before the attached Pylon Device is opened.
[in] | camera | The source of the call. |