Closed julienenpc closed 7 months ago
Hi, I would need some further info:
Hello, The camera firmwareVersion is 10.0.6C9062B1 I'm on windows 10 with a laptop The maximum frame rate in Vimba was 11.8627 with a Device link throughput Limit set on 200000000. Itried to put it at 450000000 and had a fps at 26.18 Hz The pixel format is 5312x3040 The device link speed is 450000000 The camera is on a USB 3.1 gen 1 on my laptop Thanks,
De: "Teresa-AlliedVision" @.> À: "alliedvision/VimbaPython" @.> Cc: "julienenpc" @.>, "Author" @.> Envoyé: Mardi 27 Février 2024 11:24:45 Objet: Re: [alliedvision/VimbaPython] VmbCError(<VmbError.InternalFault: -1>) (Issue alliedvision/VmbPy#25)
Hi, I would need some further info:
* camera firmware version (check the Firmware Upadater or the feature for DeviceFirmwareVersion)
* OS
* Type of host system (Laptop, Tower PC, Embedded)
* How the camera behaves in VimbaX Viewer: Max FPS and throughput (increment DeviceLinkThroughputLimit until the FPS dial bcomes unstable)
* Pixel format of the camera
* Value for DeviceLinkSpeed
* How the camera is connected: PCIE card with USB3 ports, USB2 ports, integrated USB controller, switches, adapters,
— Reply to this email directly, view it on GitHub , or unsubscribe . You are receiving this because you authored the thread. Message ID: <alliedvision/VimbaPython/issues/180/1966235390 @ github . com> [ { @.": "http://schema.org", @.": "EmailMessage", "potentialAction": { @.": "ViewAction", "target": "https://github.com/alliedvision/VmbPy/issues/25", "url": "https://github.com/alliedvision/VmbPy/issues/25", "name": "View Issue" }, "description": "View this Issue on GitHub", "publisher": { @.": "Organization", "name": "GitHub", "url": "https://github.com" } } ]
Just in case it helps, here the full error i get:
from vmbpy import * with VmbSystem . get_instance () as vmb : cams = vmb . get_all_cameras () with cams [ 0 ] as cam : arr = cam . get_frame ()
--------------------------------------------------------------------------- VmbCError Traceback (most recent call last) C:\Users\JULIEN~1.ARC\AppData\Local\Temp/ipykernel_4504/1937688060.py in
De: "Teresa-AlliedVision" @.> À: "alliedvision/VimbaPython" @.> Cc: "julienenpc" @.>, "Author" @.> Envoyé: Mardi 27 Février 2024 11:24:45 Objet: Re: [alliedvision/VimbaPython] VmbCError(<VmbError.InternalFault: -1>) (Issue alliedvision/VmbPy#25)
Hi, I would need some further info:
* camera firmware version (check the Firmware Upadater or the feature for DeviceFirmwareVersion)
* OS
* Type of host system (Laptop, Tower PC, Embedded)
* How the camera behaves in VimbaX Viewer: Max FPS and throughput (increment DeviceLinkThroughputLimit until the FPS dial bcomes unstable)
* Pixel format of the camera
* Value for DeviceLinkSpeed
* How the camera is connected: PCIE card with USB3 ports, USB2 ports, integrated USB controller, switches, adapters,
— Reply to this email directly, view it on GitHub , or unsubscribe . You are receiving this because you authored the thread. Message ID: <alliedvision/VimbaPython/issues/180/1966235390 @ github . com> [ { @.": "http://schema.org", @.": "EmailMessage", "potentialAction": { @.": "ViewAction", "target": "https://github.com/alliedvision/VmbPy/issues/25", "url": "https://github.com/alliedvision/VmbPy/issues/25", "name": "View Issue" }, "description": "View this Issue on GitHub", "publisher": { @.": "Organization", "name": "GitHub", "url": "https://github.com" } } ]
This seems to be a known issue with Firmware 10. Please update to the latest version, currently 13, from our website: https://www.alliedvision.com/de/support/firmware-downloads/ Feel free to reopen the issue or put in a support request through our webiste form, if it issue persists.
The rest of the setup and the behaviour in Vimba Viewer look good, so I don't expect other issues.
Hello, My camera works in Vimba X. Python worked to run a Gx3300 ethernet camera. However when i use a usb camera it doesn't work : i have the VmbCError(<VmbError.InternalFault: -1>) error.
If i do the "list-camera.py" from example i get : _////////////////////////////////// /// VmbPy List Cameras Example /// //////////////////////////////////
Cameras found: 1 /// Camera Name : Allied Vision 1800 U-1620m /// Model Name : 1800 U-1620m /// Camera ID : DEV_1AB22C024B86 /// Serial Number : 0381Y /// Interface ID : VimbaUSBInterface0x0
However, when i try a grab with example code or a simple code i have the error :
_from vmbpy import *
with VmbSystem.get_instance () as vmb: cams = vmb.get_all_cameras () with cams [0] as cam: arr = cam.getframe ()
As adviced i tried to reinstalled the whl (python -m pip --force-reinstall vmbpy-1.0.2-py3-none-any.whl), the installation worked but still the same issue. Do you have any idea to make it work?