Brown Images Computer Vision Model
How to use the Brown Images 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="brown-images/25")Or, Use Free Circle and Triangle 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": "circle, triangle"
},
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 Brown Images Model
Here are a few use cases for this project:
-
Graphic Design Assistance: This model could aid graphic designers in identifying images containing specific shapes that align with their design aesthetics or themes. It would be particularly useful when designers are working on projects requiring specific shapes in a brown or black palette, providing relevant images with a quick search.
-
Educational Applications: The model could be employed in an educational setting to assist students learning about shapes. Teachers could utilize it to source a variety of real-world examples depicting circles and triangles within specific color confines, helping students visualize and better understand these concepts.
-
Content Filtering: Digital platforms or content creators could use the model to filter and classify their content, particularly useful for websites or online galleries that showcase geometric art or images in specific color themes.
-
Augmented Reality Games: Game developers can use the model to develop AR games that require players to identify or interact with specific shapes like circles and triangles within the game environment.
-
Accessibility Services: The model can help develop solutions or tools for visually impaired users, helping them recognize different shapes in images. This could be integrated into software that describes images verbally to users.
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{ brown-images_dataset,
title = { Brown Images Dataset },
type = { Open Source Dataset },
author = { Alienor Duron },
howpublished = { \url{ https://universe.roboflow.com/alienor-duron/brown-images } },
url = { https://universe.roboflow.com/alienor-duron/brown-images },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2022 },
month = { mar },
note = { visited on 2026-07-29 },
}










