Converting bounding box annotations to popular formats like a breeze.
Project description
bboxconverter
bboxconverter is a Python library that enables seamless conversion of bounding box formats between various types and file formats. It provides an easy-to-use syntax for reading and exporting bounding box files.
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.
Various types and format
When you work with bounding box you have severals things to consider.
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
Installation
pip install bboxconverter
or
git clone https://github.com/ODAncona/bboxconverter.git
cd bboxconverter
poetry install
See the installation guide for more informations.
Usage
The goal of this library is to seamlessly convert bounding box format using easy syntax.
It should be a breeze like...
import bboxconverter as bc
# Input file path
input_path = './examples/example.csv'
# Output file path
output_path = './examples/output/example.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 = bc.read_csv(input_path, mapping=bbox_map)
# Export the file to the desired format
parser.export(output_path=output_path, format='coco')
parser.export(output_path=output_path, format='voc')
parser.export(output_path=output_path, format='yolo')
Documentation
You can find the documention online at bboxconvert.readthedoc.io
Changelog
See the CHANGELOG file for details.
Contributing
Contributions are welcome! Please read the contributing guidelines first.
License
This project is licensed under the GPLV3 License - see the LICENSE file for details.
Acknowledgments
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bboxconverter-0.1.9.tar.gz
.
File metadata
- Download URL: bboxconverter-0.1.9.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2eeac429893d6c7197e34d7ee20b88458a14329940277d4cfe14638f17c5c21f |
|
MD5 | 3341134080f242e1f693a49c38757139 |
|
BLAKE2b-256 | e0be1e7c6a615c82336c6ba6a8a91172ec3096dd71c494c93754514347320a23 |
File details
Details for the file bboxconverter-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: bboxconverter-0.1.9-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d97cc130560e4c0fa43e0b4e2678f3795dca11a9fa24e6da11d69b18ae07895c |
|
MD5 | bc53ebb2a9da47fb833dfeb100de1248 |
|
BLAKE2b-256 | 1fd1489876a10a928023fab8c315c86ce9893195d2108f64cb5ee5d5930fb24b |