You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/opt/pylon/share/pylon/Samples/blaze/Python/pypylon/SimpleGrab/simple_grab.py", line 17, in<module>
camera = pylon.InstantCamera(pylon.TlFactory.GetInstance().CreateFirstDevice(dc))
File "/home/akidu/.local/lib/python3.10/site-packages/pypylon/pylon.py", line 1734, in CreateFirstDevice
return _pylon.TlFactory_CreateFirstDevice(self, *args)
_genicam.RuntimeException: Cannot provide XML file. Failed to open GenTL device. Error: ID could not be connected to a resource (fffffc11) : RuntimeException thrown (file 'PylonGtcTL.cpp', line 320)
Is your camera operational in Basler pylon viewer on your platform
Yes
Hardware setup & camera model(s) used
Ubuntu 22.04.3 LTS
blaze-101
Runtime information:
import sys, pypylon.pylon, platform
print(f'python: {sys.version}')
print(f'platform: {sys.platform}/{platform.machine()}/{platform.release()}')
print(f'pypylon: {pypylon.pylon.__version__} / {".".join([str(i) for i in pypylon.pylon.GetPylonVersion()])}')
The text was updated successfully, but these errors were encountered:
you need to install pylon and Supplementary package in addition. After installing the Supplementary package, try this
dc = pylon.DeviceInfo()
dc.SetDeviceClass("BaslerGTC/Basler/GenTL_Producer_for_Basler_blaze_101_cameras")
camera = pylon.InstantCamera(pylon.TlFactory.GetInstance().CreateFirstDevice(dc))
camera.Open()
Describe the issue:
i cannot use pypylon to connect to my blaze-101 cams, see below, connecting via harvester works.
Reproduce the code example:
Error message:
Is your camera operational in Basler pylon viewer on your platform
Yes
Hardware setup & camera model(s) used
Ubuntu 22.04.3 LTS
blaze-101
Runtime information:
The text was updated successfully, but these errors were encountered: