VimbaPython icon indicating copy to clipboard operation
VimbaPython copied to clipboard

Old Allied Vision Vimba Python API. The successor to this API is VmbPy

Results 93 VimbaPython issues
Sort by recently updated
recently updated
newest added

As mentioned in #47: > Since you mention the need to unplug/replug the camera, my first guess would be, that some process is still holding the camera connection open. Perhaps...

Hi I have a USB3 camera connected with USB2 port PC, the frame are always liking this: FrameStatus.Complete FrameStatus.Incomplete FrameStatus.Incomplete FrameStatus.Complete FrameStatus.Incomplete FrameStatus.Incomplete FrameStatus.Complete FrameStatus.Incomplete FrameStatus.Incomplete My python code: ```...

Hi I have a USB camera from allied vision. I am getting the following error: vimba.error.VimbaCameraError: However after I restart the jetson the code works maybe once or twice before...

Hi, I am attempting to write my acquired frames straight to a video file. I followed the example in [Issue #62](https://github.com/alliedvision/VimbaPython/issues/62#issuecomment-884007191). I was able to grab acquire and write 50...

We have tried to use frame.get_timestamp() and dividing this by the timestamp tick frequency. However there is drift in relation to the real-world time. What is the most accurate way...

I am trying to disconnect and reconnect to a Alvium 1800 U-1620 USB camera. It seems that the camera returns error -12 unless I restart the application. I have attached...

Hey, I am using Mako G-192B camera and Vimba SDK 6.0 (ARM64) on Raspberry Pi 4. I want to grab synchronous frames. I setup my camera and set ExposureAuto feature...

hi @NiklasKroeger-AlliedVision, I follow the supplied example: multithreading_opencv.py, and give a little modify, here is the snippet code: class FrameProducer(threading.Thread): def __init__(self, cam: Camera, frame_queue: queue.Queue): threading.Thread.__init__(self) self.log = Log.get_instance()...

I'm currently adapting a GUI to work with an Allied Vision camera, and trying to use async acquisition for returning a continuous feed of images. The examples seem simple enough,...

Hello. I am currently developing a small module which imports VimbaPython. I wish to type-check my code with `mypy`, but it raises error: ``` error: Skipping analyzing "vimba": module is...