Metadata-Version: 2.1
Name: fancybbox
Version: 0.0.11
Summary: Fancy Bounding Box - Rectangle for Object Detection
Author: Prashant27050 (Prashant Verma)
Author-email: prashant27050@gmail.com
Keywords: python,image processing,bbox,bbox regtangle,fancy rectangle,bounding box
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: opencv-python

# Fancybbox

A package that allows to build Lib is a package that enables users to create visually appealing bounding boxes for object detection in image processing deep learning projects.  
With a current version of 0.0.10, the package is constantly being updated and improved. The package offers a variety of features, including the ability to customize the appearance of bounding boxes with different colors, line widths, and styles. 
Additionally, it provides users with the flexibility to adjust the size and shape of the bounding boxes to meet their specific needs.'


Developed by Prashant Verma (c) 2023

## Examples of How To Use (Alpha Version)

Creating A Sample detection function

```python
import cv2
from fancy_bbox import FancyBox

# Load an image
image = cv2.imread("images/img_1.jpg")

# Detect an object and get its bounding box coordinates
x, y, w, h = [100, 100, 200, 200]

# Create a FancyBox object and draw it on the image
fancy_box = FancyBox(x, y, w, h, border_thickness=1, border_color=(0, 255, 0))
image_with_box = fancy_box.target_angle_bbox(image)


# Display the image with the box
cv2.imshow("Fancy Box Example", image_with_box)
cv2.waitKey(0)
```

