Annotate Objects
Draw bounding boxes around objects in your images. Accurate annotations are crucial for model performance.
Annotation Interface
Annotation Guidelines
Box Placement Rules
Good annotation:
┌─────────────────┐
│ ┌─────────┐ │ Box tightly surrounds
│ │ [car] │ │ the visible object
│ └─────────┘ │
└─────────────────┘
Bad annotation:
┌─────────────────┐
│ ┌─────────────┐ │ Box includes too much
│ │ │ │ background
│ │ [car] │ │
│ └─────────────┘ │
└─────────────────┘Handling Special Cases
| Scenario | Approach |
|---|---|
| Partially visible | Annotate visible portion |
| Occluded objects | Annotate visible parts, or use “occluded” tag |
| Overlapping objects | Create separate boxes for each |
| Small objects | Zoom in for precision |
| Ambiguous objects | Use “difficult” or “uncertain” tags |
Quality Control
Review Workflow
- Random sampling - Review 10% of annotations
- Inter-annotator agreement - Have multiple people annotate same images
- Edge case review - Focus on difficult images
- Label distribution - Check for class imbalance
Annotation Statistics
# Get annotation statistics
stats = client.get_dataset_stats(
dataset_id=dataset.id,
version_id=version.id
)
print(f"Total images: {stats['total_items']}")
print(f"Annotated: {stats['annotated_items']}")
print(f"Boxes per image: {stats['avg_annotations_per_item']}")
# Label distribution
for label, count in stats['label_counts'].items():
print(f" {label}: {count} boxes")Data Augmentation Preview
SeeMe.ai applies augmentations during training. Preview how your annotations will be transformed:
# Preview augmentations
augmented = client.preview_augmentation(
item_id=item.id,
augmentation_type="flip_horizontal"
)
# Shows image with transformed bounding boxesBest Practices
- Consistency is key - Same rules for all annotators
- Tight boxes - Minimize background, maximize object
- Label everything - Don’t skip small or partially visible objects
- Use labels consistently - “car” vs “Car” vs “CAR” are different!
- Take breaks - Annotation fatigue leads to errors