Hi,
I’m interested in your software. The only flaw it has is that it doesn’t use a dedicated graphics card. I was browsing this forum and I read that an update that would allow the use of a dedicated card is not planned.
It’s a shame, because in Python it’s detection in a few lines of code.
In my script I have for example:
print(“GPU Available:”, torch.cuda.is_available())
print(“GPU Name:”, torch.cuda.get_device_name(0) if torch.cuda.is_available() else “None”)
device = “cuda” if torch.cuda.is_available() else “cpu”
model = YOLO(“yolo12m.pt”).to(device)
as part of the player detection process.
Are you really not planning a version using a dedicated graphics card?
Thanks
Pavel