-
Notifications
You must be signed in to change notification settings - Fork 41
multithreading with 3 camera #168
Comments
Can you stream all 3 cameras with the same settings in Vimba Viewer? If not, then this might be a bandwidth problem. |
Right now seeing me it works but if I put a time.sleep at this point.
the problem is that the thread system stops working because the frames are generated in a different order. without that it does not allow me to use the with cam PD: I am using the same code as the example |
``class FrameProducer(threading.Thread):
class MainThread(threading.Thread):
fails in the 'with' when there are more than 2 cameras, it does not recognize the cameras |
Hi, pleasse check first of all, if all of the cameras can be accessed and stream in Vimba Viewer at the same time. This is to make sure that there is no problem with the setup or installation. Once that is clear, we can have a closer look at the code and specifically the Vimba Python setup. |
When I connect 3 camera at the time of the code I execute this line of code:
with self.producers_lock: for producer in self.producers.values(): producer.start()
tells me the following: camera with id XXXXX could not be found.
it should be noted that the camera is recognized and saved in the producer without any problem. this error only happens when I connect 3 or more cameras.
The text was updated successfully, but these errors were encountered: