Metadata-Version: 2.1
Name: bbox_merger
Version: 0.0.7
Summary: This Module will help you out in merging your bboxes if overlaps
Home-page: https://github.com/SohaibAnwaar
Download-URL: https://github.com/SohaibAnwaar/bbox-merger/archive/refs/tags/v_001.tar.gz
Author: Sohaib Anwaar
Author-email: sohaibanwaar36@gmail.com
Keywords: bbox,merge,Computer Vision,Image processing,Object Detection,Segmentation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3.8

Bounding Box Merger
===================

Merge your AI predicted Bounding boxes to get a single bounding box for
each object.

Example Usage
=============

.. code:: python

    boxes = [[0, 0, 2, 2], [1, 1, 3, 3], [4, 4, 6, 6]]
    merged_boxes = merge_boxes(boxes)
    print(merged_boxes)

**Output:**

::

    [[0.0, 0.0, 3.0, 3.0], [4.0, 4.0, 6.0, 6.0]]

Example
-------

1. Before Merging Bounding Boxes |Image1|
2. After Merging Bounding Boxes |Image2|

.. |Image1| image:: https://github.com/SohaibAnwaar/bbox-merger/blob/v_001/attachments/Image1.png?raw=true
.. |Image2| image:: https://github.com/SohaibAnwaar/bbox-merger/blob/v_001/attachments/merged.png?raw=true

