Basler integration

Hello,
I wanted to ask for your support on something.
Using Roboflow and Ultraytics, I download the weights of the model I trained in Google Colab and perform tests with different types of live cameras. While I do not encounter any problems with USB cameras, I cannot integrate Basler brand gigabit Ethernet cameras. Can you provide support? I share the cameras and code I usually use below.

a2a2600-20gcbas

from ultralytics import YOLO
ov_model = YOLO(r’C:\Users\yaakbas\Ultralytics\best.onnx’)
results=ov_model(source=1,show=True,conf=0.3,save=True)

Kind regards,
Yasin AKBAS
yaakbas@borcelik.com
yasinakbas.eem@gmail.com

Hi @YASİN_AKBAŞ

I’m not familiar with any particular camera type, but GigE cameras are just the connection interface (ethernet). You likely though have to work with the camera’s SDK to connect it to your program. I recommend looking to resources from the camera manufacturer.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.