Dedicated graphics for speedup

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

If it is that simple, why don’t you try yourself and share the script or results with us?

You may also consider developing your own stitching software for a few hundred dollars: A freelancer job to build an ActionStitch knockoff for $250-750 (unfortunately the freelancer page has been removed)

I asked you as a developer to a developer. You have a ready-made solution, the only thing it lacks is the ability to use a dedicated graphics card.
You responded by saying that I should create a completely new solution.
Without answering my question. :person_shrugging: