Bottled Drink Identifier Computer Vision Model
How to use the Bottled Drink Identifier 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="bottled-drink-identifier/4")Or, Use Free Coke, Pepsi and Sprite 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": "Coke, Pepsi, Sprite, 7up, Coke-Vanilla"
},
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 Bottled Drink Identifier Model
Here are a few use cases for this project:
-
Smart Vending Machines: The "Bottled Drink Identifier" model could be used in smart vending machines to automatically recognize and sort different types of bottled drinks, enhancing the purchasing experience for customers.
-
Retail Inventory Management: Retail stores can use the model to automate the process of inventory tracking. The model can identify the type of bottled drink quickly, which can assist in re-stocking and understanding the sales of specific drink brands.
-
Recycling Centers: This model could help in waste management and recycling centers by identifying and sorting different types of bottled drinks, thus enhancing efficiency in the recycling process.
-
Health and Fitness Apps: The model can be used in health and fitness apps to allow users to easily identify and track the nutritional information of the bottled drinks they consume.
-
Beverage Quality Control: Beverage companies can use the model in their production lines to ensure correct labeling and packaging of the bottled drinks, assisting in maintaining consistency and quality control.
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{ bottled-drink-identifier_dataset,
title = { Bottled Drink Identifier Dataset },
type = { Open Source Dataset },
author = { sarahlean },
howpublished = { \url{ https://universe.roboflow.com/sarahlean/bottled-drink-identifier } },
url = { https://universe.roboflow.com/sarahlean/bottled-drink-identifier },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2023 },
month = { jan },
note = { visited on 2026-07-29 },
}










