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.
- digitalsreeni_image_annotator/__init__.py +21 -0
- digitalsreeni_image_annotator/annotator_window.py +777 -0
- digitalsreeni_image_annotator/constants.py +25 -0
- digitalsreeni_image_annotator/help_window.py +132 -0
- digitalsreeni_image_annotator/image_label.py +431 -0
- digitalsreeni_image_annotator/main.py +24 -0
- digitalsreeni_image_annotator/utils.py +47 -0
- digitalsreeni_image_annotator-0.1.3.dist-info/LICENSE +41 -0
- digitalsreeni_image_annotator-0.1.3.dist-info/METADATA +135 -0
- digitalsreeni_image_annotator-0.1.3.dist-info/RECORD +13 -0
- digitalsreeni_image_annotator-0.1.3.dist-info/WHEEL +5 -0
- digitalsreeni_image_annotator-0.1.3.dist-info/entry_points.txt +2 -0
- digitalsreeni_image_annotator-0.1.3.dist-info/top_level.txt +1 -0
|
@@ -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']
|