Skip to main content

No project description provided

Project description

BoxLab

A comprehensive Python toolkit for managing, converting, and annotating object detection datasets with support for COCO and YOLO formats.

Python Version License PyPI

Features

  • Dataset Management - Load, merge, split, and analyze datasets with multi-source support
  • Format Conversion - Seamlessly convert between COCO and YOLO formats
  • GUI Annotator - Interactive desktop application for viewing and editing annotations
  • CLI Tools - Powerful command-line interface for batch operations
  • PyTorch Integration - Direct integration with PyTorch training pipelines
  • Plugin System - Extensible architecture for custom format support

Installation

From PyPI (Recommended)

pip install boxlab

From Source

# Clone repository
git clone https://github.com/6ixGODD/boxlab.git
cd boxlab

# Install with Poetry (recommended)
poetry install

# Or install with pip
pip install -e .

Optional Dependencies

For PyTorch integration:

pip install torch torchvision

Quick Start

View Dataset Information

boxlab dataset info data/coco/annotations.json --format coco

Convert Between Formats

# COCO to YOLO
boxlab dataset convert input.json -if coco output -of yolo

# YOLO to COCO
boxlab dataset convert data/yolo -if yolo output -of coco

Merge Multiple Datasets

boxlab dataset merge \
  -i dataset1/ann.json coco source1 \
  -i dataset2/ann.json coco source2 \
  -o merged_dataset

Launch GUI Annotator

boxlab annotator

Python API

from boxlab.dataset.io import load_dataset, export_dataset

# Load dataset
dataset = load_dataset("annotations.json", format="coco")

# Get statistics
stats = dataset.get_statistics()
print(f"Images: {stats['num_images']}")
print(f"Annotations: {stats['num_annotations']}")

# Export to different format
export_dataset(dataset, "output/yolo", format="yolo")

CLI Commands

Dataset Operations

# View information
boxlab dataset info <path> --format <coco|yolo>

# Convert formats
boxlab dataset convert <input> -if <format> <output> -of <format>

# Merge datasets
boxlab dataset merge -i <path> <format> [name] -o <output>

# Visualize dataset
boxlab dataset visualize <path> --format <format> -o <output>

Annotator

# Launch GUI application
boxlab annotator

PyTorch Integration

from boxlab.dataset.io import load_dataset
from boxlab.dataset.torchadapter import build_torchdataset
from torch.utils.data import DataLoader

# Load and prepare dataset
dataset = load_dataset("train.json", format="coco")

# Create PyTorch dataset with augmentation
torch_dataset = build_torchdataset(
    dataset,
    image_size=640,
    augment=True,
    normalize=True,
    return_format="xyxy"
)

# Create DataLoader
train_loader = DataLoader(
    torch_dataset,
    batch_size=16,
    shuffle=True,
    collate_fn=torch_dataset.collate
)

# Training loop
for images, targets in train_loader:
    # Your training code here
    pass

Custom Plugin Development

Custom Loader

from boxlab.dataset.plugins import LoaderPlugin
from boxlab.dataset import Dataset

class CustomLoader(LoaderPlugin):
    @property
    def name(self) -> str:
        return "custom_format"

    @property
    def description(self) -> str:
        return "Custom format loader"

    def load(self, path, **kwargs):
        dataset = Dataset(name="custom")
        # Your loading logic here
        return dataset

# Register and use
from boxlab.dataset.plugins.registry import register_loader
register_loader("custom_format", CustomLoader)

Documentation

Full documentation is available at: https://6ixgodd.github.io/boxlab

Examples

Convert with Custom Split Ratio

boxlab dataset convert annotations.json \
  -if coco \
  output/yolo \
  -of yolo \
  --train-ratio 0.7 \
  --val-ratio 0.2 \
  --test-ratio 0.1 \
  --seed 42

Merge with Source Tracking

boxlab dataset merge \
  -i manual_annotations.json coco manual \
  -i automatic_annotations.json coco automatic \
  -o combined_dataset \
  --preserve-sources

Visualize with Heatmap

boxlab dataset visualize data/yolo \
  --format yolo \
  -o visualizations \
  --samples 10 \
  --show-heatmap \
  --show-source-dist

Requirements

  • Python 3.10 or higher
  • NumPy
  • Pillow
  • Matplotlib
  • PyYAML
  • Pandas

Optional

  • PyTorch (for training integration)
  • torchvision (for training integration)

Project Structure

boxlab/
├── boxlab/
│   ├── dataset/            # Core dataset management
│   │   ├── plugins/        # Format plugins (COCO, YOLO)
│   │   ├── io.py           # I/O operations
│   │   ├── types.py        # Data structures
│   │   └── torchadapter.py # PyTorch integration
│   ├── annotator/          # GUI application
│   ├── cli/                # Command-line interface
│   └── exceptions.py       # Error handling
├── docs/                   # Documentation
├── tests/                  # Test suite
└── pyproject.toml          # Project configuration

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Development Setup

# Clone repository
git clone https://github.com/6ixGODD/boxlab.git
cd boxlab

# Install with development and test dependencies
poetry install --all-extras

# Run tests
poetry run pytest

# Run linting
poetry run ruff check .

# Build documentation
poetry run mkdocs serve

Guidelines

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Changelog

See CHANGELOG.md for version history and release notes.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boxlab-0.1.1.tar.gz (89.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

boxlab-0.1.1-py3-none-any.whl (105.7 kB view details)

Uploaded Python 3

File details

Details for the file boxlab-0.1.1.tar.gz.

File metadata

  • Download URL: boxlab-0.1.1.tar.gz
  • Upload date:
  • Size: 89.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for boxlab-0.1.1.tar.gz
Algorithm Hash digest
SHA256 389f3c87be6b44e1c8a808d171917dced067a464d641f9d119690142e6ddca65
MD5 45cc4dd6179f435d69410b25aa11d409
BLAKE2b-256 106b5e389c3f79dde9a47ef59df71a9245027e2b12e19ed44affd68608a5155d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boxlab-0.1.1.tar.gz:

Publisher: publish.yml on 6ixGODD/boxlab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boxlab-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: boxlab-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for boxlab-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 25ba0312a32b0e89fc691921db5a486b0a39ba53a42cdab97fb4fd4f84f66b37
MD5 a6e1f101ad4b2ccbbbe011cc4e907362
BLAKE2b-256 ccf21334c1525980f958447287d4502f14490dc3ef4dc66a30fb5aae36b1e333

See more details on using hashes here.

Provenance

The following attestation bundles were made for boxlab-0.1.1-py3-none-any.whl:

Publisher: publish.yml on 6ixGODD/boxlab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page