skywo1f

Results 13 comments of skywo1f

`from time import sleep from pymba import Vimba from _display_frame import display_frame import time import cv2 import threading def camCapture(camera): try: camera.arm('SingleFrame') while (True): start_time = time.time() # start time...

would you mind posting your code? I tried using continuous frames, but 1, it was hard getting them into an object which opencv could interact with, and 2, even the...

I tried your suggestion but I am getting `Traceback (most recent call last): File "fast_color_video.py", line 55, in featureAFR.value = max_fps File "/usr/local/lib/python3.6/dist-packages/pymba/feature.py", line 40, in value self._access_func('set', self.info.featureDataType)(value) File...

in my implementation of _display_frame, I am only getting 15 fps: ` from pymba import Vimba, VimbaException from _display_frame_fast import display_frame import time if __name__ == '__main__': with Vimba() as...

The problem with the Continuous mode example is that it doesn't include a line like `frame = camera.acquire_frame()` so that I can load the frame and send it out for...

I tried grabbing the frame using the method you suggested, then sending it over to another thread via Queue, but I am not getting anything on the other side: '...

Looking at other related issues, I see that calling "watch" might cause wandb to record too much. But I am not able to locate that option.

thats for line 80: File "inference/infer_mobilenet_ssd.py", line 80, in

it seems to have something to do with training. Once I tried traiining my own net starting with the mobilenet.h5, thats when it started having problems. Similarly, when I tried...