Plastic Project Computer Vision Model
How to use the Plastic Project Detection API
Try This Model
Drop an image here or click to upload
Or try a test image
Model type: Roboflow 3.0 Object Detection (Fast)
Dataset: plastic-project/1 (5438 images)
Checkpoint: COCO
Aug 21, 2023
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="plastic-project/1")Give your agent everything it needs
Or, Use Free Paper, Plastic and Glass Detection API
Powered by general detection model
Code
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": "paper, plastic, glass, metal, cardboard"
},
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
Detecting classes:
Or try a test image
About Plastic Project Model
An intermediate quality recyclable object detection dataset, derived from TACO Dataset.
Roboflow Agent
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{ plastic-project_dataset,
title = { Plastic Project Dataset },
type = { Open Source Dataset },
author = { Alpha Tauri },
howpublished = { \url{ https://universe.roboflow.com/alpha-tauri/plastic-project } },
url = { https://universe.roboflow.com/alpha-tauri/plastic-project },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2023 },
month = { aug },
note = { visited on 2026-07-29 },
}










