Training
Automatic Image Tagging Pipeline
Automatically tag images with objects, scenes, colors, and custom labels using computer vision models. Perfect for DAM systems and media libraries.
image
Single Tier
4.1K runs
Run in Builderfrom mixpeek import Mixpeekclient = Mixpeek(api_key="YOUR_API_KEY")namespace = client.namespaces.create(name="image-tags")collection = client.collections.create(namespace_id=namespace.id,name="product-photos",extractors=["image-classification", "object-detection", "color-extraction"])# Upload imagesclient.buckets.upload(collection_id=collection.id,url="s3://your-bucket/photos/")# Query by tagsresults = client.documents.search(namespace_id=namespace.id,filters={"tags": {"$contains": "outdoor"}})
Feature Extractors
Object Detection
Identify and locate objects within images with bounding boxes
631K runs
Retriever Stages
Related Recipes & Resources
Explore these related resources to deepen your understanding and discover more powerful features
Extractor
Object Detection
Identify and locate objects within images with bounding boxes
Learn more
Glossary
Object Detection
Locating and classifying objects within images or video
Learn more
Glossary
Image Classification
Assigning category labels to entire images
Learn more
Extractor
Image Embedding
Generate visual embeddings for similarity search and clustering
Learn more
Extractor
Image Captioning
Generate descriptive captions for images automatically
Learn more
Extractor
Facial Recognition
Detect and identify faces in images with high accuracy
Learn more