digitalsreeni-image-annotator 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ """
2
+ Image Annotator
3
+ ===============
4
+
5
+ A tool for annotating images with polygons and rectangles.
6
+
7
+ This package provides a GUI application for image annotation,
8
+ supporting polygon and rectangle annotations in a COCO-compatible format.
9
+
10
+ @DigitalSreeni
11
+ Dr. Sreenivas Bhattiprolu
12
+ """
13
+
14
+ __version__ = "0.1.0"
15
+ __author__ = "Dr. Sreenivas Bhattiprolu"
16
+
17
+ from .annotator_window import ImageAnnotator
18
+ from .image_label import ImageLabel
19
+ from .utils import calculate_area, calculate_bbox
20
+
21
+ __all__ = ['ImageAnnotator', 'ImageLabel', 'calculate_area', 'calculate_bbox']