Metadata-Version: 2.4
Name: nms_3d
Version: 0.1.8
Summary: 3D bounding box NMS and plotting package
Author-email: Giulio Russo <russogiulio1998@icloud.com>, Ciro Russo <ciro.russo2910@gmail.com>
License: MIT License
Project-URL: Homepage, https://github.com/GiulioRusso/NMS-3D
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.5
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: torch>=2.2.2
Requires-Dist: plotly>=5.13.1
Dynamic: license-file

<div align="center">

  <!-- headline -->
  <center><h1><img align="center" src="https://raw.githubusercontent.com/GiulioRusso/NMS-3D/main/docs/images/logo.png" width=50px> 3D Non-Maximum Suppression</h1></center>

  <!-- PyPI badges -->
  <a href="https://pypi.org/project/NMS-3D/">
    <img src="https://badge.fury.io/py/NMS-3D.svg" alt="PyPI version">
  </a>
  <a href="https://pepy.tech/project/NMS-3D">
    <img src="https://pepy.tech/badge/NMS-3D" alt="Downloads">
  </a>
  <a href="https://pypi.org/project/NMS-3D/">
    <img src="https://img.shields.io/pypi/pyversions/NMS-3D.svg" alt="Python versions">
  </a>
  <a href="https://pypi.org/project/NMS-3D/">
    <img src="https://img.shields.io/pypi/l/NMS-3D.svg" alt="License">
  </a>

</div>

<br>

Implementation of 3D non-maximum suppression (NMS-3D) for bounding boxes using PyTorch and Plotly.

<img align="center" src="https://raw.githubusercontent.com/GiulioRusso/NMS-3D/main/docs/images/NMS-image-example.png" width=1000px>

## ⬇️ Installation and Import
Now, this code is available with PyPI [here](https://pypi.org/project/nms-3d/). The package can be installed with:

```bash
pip install nms-3d
```

and can be imported as:

```python
import nms_3d
```

## 📦 Package documentation

Package documentation is available [here](https://giuliorusso.github.io/NMS-3D/).

## 📂 Project Organization

The project consists of the following Python modules:
```bash
.
├── nms_3d/                # The NMS 3D package folder
│   ├── nms_3d.py          # Function that applies the NMS 3D algorithm.
│   └── plot_3d_boxes.py   # Function for creating 3D plots of bounding boxes using Plotly.
│
├── example.py             # The script that contains the 3D NMS application example.
│
├── bbox-coords/           # The folder that contains the bounding box .csv files before and after the 3D NMS.
│   ├── bbox-coords-before-nms-3d.csv  # Example file of bounding boxes to suppress.
│   └── bbox-coords-after-nms-3d.csv   # Output file after applying the 3D NMS on bbox-coords-before-nms-3d.csv.
│
└── output/                # The folder that contains the .html visualization of the boxes before and after the 3D NMS.
    ├── best_boxes_after_nms.html   # .html view of the boxes after the 3D NMS.
    ├── best_boxes_before_nms.html  # .html view of the boxes before the 3D NMS.
    └── NMS-image-example.png       # Example image used in this README.md file.
```

Run the application example with:

```bash
python3 example.py
```

This code will read the bounding box coordinates from bbox-coords-before-nms-3d.csv, perform 3D NMS, and save the result to bbox-coords-after-nms-3d.csv. Also, two 3D plots are saved as HTML files to show the boxes before and after NMS.


## 🚨 Requirements

```bash
Python>=3.8.0
torch>=2.2.2
plotly>=5.13.1
```

Install the requirements with:
```bash
pip3 install -r requirements.txt
```

## 🤝 Contribution
👨‍💻 [Ciro Russo, PhD](https://www.linkedin.com/in/ciro-russo-b14056100/)

## ⚖️ License

MIT License
