Hi,
I was just testing the async and parallel examples (from CVBpy" examples folder) and I can run the async file fine (it works for 2 cameras that I am currently working with) but parallel streaming only retuns this part :
# called from the aqusition thread def handle_async_stream(self, stream): super().handle_async_stream(stream) print("handle_async_stream")
but this part never shows up in the console:
# called from the aqusition thread def handle_async_wait_result(self, image, status): super().handle_async_wait_result(image, status) self.rate_counter.step() print("New image: " + image.__class__.__name__ + " " + str(image) + " | Status: " + str(status) + " | Buffer Index: " + str(image.buffer_index))
What can be the issue here? (The print(“Acquired with: " + str(self.rate_counter.rate) + " fps”) return Nan)