Using the software trigger on 4 different acA1920-40gc
See original GitHub issueHello everybody,
I have 4 different acA1920-40gc cameras on the same PoE switch and I would like to trigger the cameras at the same time.
I first used an InstantCameraArray
and then going through it doing a GrabOne(100)
on each of the cameras but this is not optimal and there is some delay.
What would be the best to do it? I saw that there is function called ExecuteSoftwareTrigger()
but the example is only for a single camera case. How should I go through the InstantCameraArray
and make sure all the cameras are taking a picture at the same time?
Thank you very much for your help,
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
ADC_ETC software trigger with sync for both ADC1 & ADC2?
I see in the SDK sample for software triggered ADC_ETC, it triggers the conversion for ADC1 only. The trigger also has a sync...
Read more >SoftwareTrigger for 4 cameras (multithreaded) #69 - GitHub
SoftwareTrigger.run() ) is executed. Each camera runs in its own thread. The main thread is managing an event based on which the software...
Read more >How Can I Trigger and Synchronize NI PXI(e) DMM Cards ...
There are two options available for triggering DMM cards with software. The first involves using a software trigger button, and the second ...
Read more >Spinnaker C++: Trigger.cpp - FLIR
This example shows the process of configuring, using, and cleaning up a camera for use with both a software and a hardware trigger....
Read more >Triggered Image Acquisition - Basler Product Documentation
When the camera is configured for software triggering, a software command acts as a trigger signal. The software command can be executed using...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I think your options are to use one of these:
Since
ExecuteSoftwareTrigger()
is a method ofInstantCamera
, it only deals with a single camera. There is noExecuteSoftwareTrigger()
method in the classInstantCameraArray
(because that cannot be implemented in a generic way for all camera models),