Boccia ball Computer Vision Model
How to use the Boccia ball Detection API
Try This Model
Drop an image here or click to upload
Code Snippets
from inference_sdk import InferenceHTTPClient
CLIENT = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key="API_KEY"
)
result = CLIENT.infer("YOUR_IMAGE.jpg", model_id="boccia-ball-bfp3n/1")Or, Use Free Blue Ball, Jack Ball and Red Ball Detection API
Powered by general detection model
pip install inference-sdk# 1. Import the library
from inference_sdk import InferenceHTTPClient
# 2. Connect to your workspace
client = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key="API_KEY"
)
# 3. Run your workflow on an image
result = client.run_workflow(
workspace_name="<YOUR_WORKSPACE>",
workflow_id="<YOUR_WORKFLOW_ID>",
images={
"image": "YOUR_IMAGE.jpg" # Path to your image file
},
parameters={
"classes": "Blue Ball, Jack Ball, Red Ball"
},
use_cache=True # cache workflow definition for 15 minutes
)
# 4. Get your results
print(result)Run on custom image
Drop an image here or click to upload
About Boccia ball Model
Here are a few use cases for this project:
-
Sports Coaching: Trainers can use the computer vision model to observe each player's characteristics and fine-tune their strategies in the game of Boccia. It can help in identifying the path of the balls, the consistency of throws, and player performance analysis.
-
Automated Score Keeping: The model can be used to automatically track the state of Boccia games and maintain real-time scores. It will identify which ball is closer to the Jack Ball and assign points accordingly, reducing human error.
-
Augmented Reality Games: The model can be used to create AR games using actual physical movements. Players would toss real balls, and the model would identify and track them to synchronize with the virtual game.
-
Boccia Ball Robot: Development of an autonomous robot that can play Boccia Ball. The model can be used to recognize the balls and develop a strategy to win the game.
-
Physiotherapy & Rehab: The model can be used in a rehabilitation setting where patients play Boccia as a form of physical therapy. The model can monitor how well patients are able to throw and control the balls over time, providing health professionals with additional information about their progress.
Tell the agent what you want to build.
Cite This Project
LicenseCC BY 4.0If you use this dataset in a research paper, please cite it using the following BibTeX:
@misc{ boccia-ball-bfp3n_dataset,
title = { Boccia ball Dataset },
type = { Open Source Dataset },
author = { explosion },
howpublished = { \url{ https://universe.roboflow.com/explosion-evgdm/boccia-ball-bfp3n } },
url = { https://universe.roboflow.com/explosion-evgdm/boccia-ball-bfp3n },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2025 },
month = { apr },
note = { visited on 2026-07-29 },
}










