mmdetectionEasy Examples

OpenMMLab detection toolbox: 200+ models for object detection

Getting started with mmdetection

Installation and basic usage of mmdetection.

python
# Install: pip install mmdet
import mmdetection

# Basic mmdetection usage
print(f"Using mmdetection")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: mmdetection)

mmdetection is a third-party package. OpenMMLab detection toolbox: 200+ models for object detection. Install with: pip install mmdet

Common mmdetection operations

Frequently used features of mmdetection.

python
# Install: pip install mmdet
import mmdetection

# Common mmdetection patterns
print(f"mmdetection version: {mmdetection.__version__}")

These are the most commonly used features of mmdetection in everyday development.

Want to try these examples interactively?

Open Easy Playground