veggie detection Computer Vision Dataset
How to use the veggie detection 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="academic-bafvt/veggie-detection-uilmy-instant-1")Or, Use Free Tomato, Potato and Onion 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": "tomato, potato, onion, garlic"
},
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 veggie detection Model
Project Title Smart Crop Detection System for Agricultural Automation
Overview This project implements an intelligent computer vision system designed to automatically identify and classify common vegetables using YOLOv8 object detection. The system integrates with ESP32-S3-CAM hardware for real-time image capture and processing, making it suitable for agricultural automation, crop monitoring, and smart farming applications.
Dataset Description Classes: 4 vegetable categories
š§ Garlic š§ Onion š„ Potato š Tomato
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{ veggie-detection-uilmy_dataset,
title = { veggie detection Dataset },
type = { Open Source Dataset },
author = { Academic },
howpublished = { \url{ https://universe.roboflow.com/academic-bafvt/veggie-detection-uilmy } },
url = { https://universe.roboflow.com/academic-bafvt/veggie-detection-uilmy },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2025 },
month = { sep },
note = { visited on 2026-07-29 },
}










