Metadata-Version: 2.1
Name: bboxconverter
Version: 0.1.0
Summary: Converting bounding box annotations to popular formats like a breeze.
License: GLP-3.0
Keywords: bbox,bounding box,annotation,coco,yolo,voc,object detection
Author: Olivier D'Ancona
Author-email: olivier_dancona@hotmail.com
Requires-Python: >=3.9
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Dist: pandas (>=1.3.4,<2.0.0)
Requires-Dist: xmltodict (>=0.12.0,<0.13.0)
Project-URL: documentation, https://github.com/ODAncona/bbox-tools/tree/main/documentation
Project-URL: repository, https://github.com/ODAncona/bbox-tools.git
Description-Content-Type: text/markdown

# bboxconverter

## Installation

```bash
git clone https://github.com/ODAncona/bbox-tools.git
cd bbox-tools
python3 setup.py install
```
or

```bash
pip install bboxconverter
```

See the [installation](https://github.com/ODAncona/bbox-tools/blob/main/documentation/how_to_guide/installation.md) guide for more information.

## Introduction

### What is a bounding box?

Bounding boxes are a crucial component of object detection algorithms, which are used to identify and classify objects within an image or video. A bounding box is a rectangle that surrounds an object of interest in the image, and is typically represented by a set of coordinates that define the box's position and size. These boxes can be used to locate and extract objects from an image, and can also provide important information about the size, shape, and orientation of the objects

### Various types and format

When you work with bounding box you have severals things to consider.

First, the bounding box could be stored in **different types** like:

- Top-Left Bottom-Right (TLBR), (x_min, y_min, x_max, y_max)
- Top-Left Width Height (TLWH), (x_min, y_min, width, height)
- Center Width Height (CWH), (x_center, y_center, width, height)

Which are popular among **different formats** like :

- COCO (Common Objects in Context)
- Pascal_voc (Visual Object Classes)
- YOLO (You Only Look Once)

Furthermore, the bounding box could be stored in **different file formats** like:

- csv
- xml
- json
- manifest
- parquet
- pickle

## Goal

The goal of this library is to seamlessly convert bounding box format using easy syntax.

It should be a breeze like...

```python
import bboxconverter as bt

# Input file path
input_path1 = './examples/example1.csv'

# Output file path
output_path2 = './examples/output/test2.json'

# Mapping between the input file and the bboxconverter format
bbox_map = dict(
    class_name='class',
    file_path='name',
    x_min='top_left_x',
    y_min='top_left_y',
    width='w',
    height='h',
    image_width='img_size_x',
    image_height='img_size_y',
)

# Read the input file
parser = bt.read_csv(input_path1, mapping=bbox_map)

# Export the file to the desired format
parser.export(output_path=output_path2, format='coco')

```

## Documentation

### API Reference

- [BBox](https://github.com/ODAncona/bbox-tools/blob/main/documentation/api_reference/bbox.md)

### How to guide

- [Installation](https://github.com/ODAncona/bbox-tools/blob/main/documentation/how_to_guide/installation.md)
- [Parse bbox](https://github.com/ODAncona/bbox-tools/blob/main/documentation/how_to_guide/parse_bbox.md)
- [Export bbox](https://github.com/ODAncona/bbox-tools/blob/main/documentation/how_to_guide/export_bbox.md)

### Tutorials

- [Prepare dataset](https://github.com/ODAncona/bbox-tools/blob/main/documentation/tutorials/prepare_dataset.md)

### Explanation

- [Object detection and bbox](https://github.com/ODAncona/bbox-tools/blob/main/documentation/explanation/object_detection_and_bbox.md)

## Contributing

Contributions are welcome!

## License

This project is licensed under the GPLV3 License - see the [LICENSE](https://github.com/ODAncona/bbox-tools/blob/main/LICENSE) file for details.

## Acknowledgments

- [Pascal VOC](http://host.robots.ox.ac.uk/pascal/VOC/)
- [COCO](http://cocodataset.org/#home)
- [YOLO](https://pjreddie.com/darknet/yolo/)
- [Albumentation](https://albumentations.ai/)

