LabelCraft 1.8.6__tar.gz
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.
- labelcraft-1.8.6/HISTORY.rst +14 -0
- labelcraft-1.8.6/LabelCraft.egg-info/PKG-INFO +71 -0
- labelcraft-1.8.6/LabelCraft.egg-info/SOURCES.txt +43 -0
- labelcraft-1.8.6/LabelCraft.egg-info/dependency_links.txt +1 -0
- labelcraft-1.8.6/LabelCraft.egg-info/entry_points.txt +2 -0
- labelcraft-1.8.6/LabelCraft.egg-info/not-zip-safe +1 -0
- labelcraft-1.8.6/LabelCraft.egg-info/requires.txt +2 -0
- labelcraft-1.8.6/LabelCraft.egg-info/top_level.txt +3 -0
- labelcraft-1.8.6/MANIFEST.in +15 -0
- labelcraft-1.8.6/PKG-INFO +71 -0
- labelcraft-1.8.6/README.rst +18 -0
- labelcraft-1.8.6/data/coco_classes.txt +21 -0
- labelcraft-1.8.6/data/predefined_classes.txt +15 -0
- labelcraft-1.8.6/libs/__init__.py +2 -0
- labelcraft-1.8.6/libs/annotation_converter.py +531 -0
- labelcraft-1.8.6/libs/canvas.py +771 -0
- labelcraft-1.8.6/libs/coco_io.py +102 -0
- labelcraft-1.8.6/libs/colorDialog.py +38 -0
- labelcraft-1.8.6/libs/combobox.py +23 -0
- labelcraft-1.8.6/libs/constants.py +20 -0
- labelcraft-1.8.6/libs/create_ml_io.py +135 -0
- labelcraft-1.8.6/libs/csv_io.py +53 -0
- labelcraft-1.8.6/libs/default_label_combobox.py +23 -0
- labelcraft-1.8.6/libs/hashableQListWidgetItem.py +15 -0
- labelcraft-1.8.6/libs/i18n.py +86 -0
- labelcraft-1.8.6/libs/labelDialog.py +91 -0
- labelcraft-1.8.6/libs/labelFile.py +267 -0
- labelcraft-1.8.6/libs/lightWidget.py +85 -0
- labelcraft-1.8.6/libs/newProjectDialog.py +220 -0
- labelcraft-1.8.6/libs/pascal_voc_io.py +171 -0
- labelcraft-1.8.6/libs/project.py +199 -0
- labelcraft-1.8.6/libs/resources.py +34899 -0
- labelcraft-1.8.6/libs/settings.py +45 -0
- labelcraft-1.8.6/libs/shape.py +205 -0
- labelcraft-1.8.6/libs/toolBar.py +35 -0
- labelcraft-1.8.6/libs/ustr.py +6 -0
- labelcraft-1.8.6/libs/utils.py +109 -0
- labelcraft-1.8.6/libs/yolo_io.py +155 -0
- labelcraft-1.8.6/libs/zoomWidget.py +85 -0
- labelcraft-1.8.6/main.py +4455 -0
- labelcraft-1.8.6/resources.py +16023 -0
- labelcraft-1.8.6/resources.qrc +46 -0
- labelcraft-1.8.6/setup.cfg +13 -0
- labelcraft-1.8.6/setup.py +148 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
History
|
|
2
|
+
=======
|
|
3
|
+
|
|
4
|
+
1.8.6 (2024-XX-XX)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Based on labelImg project
|
|
8
|
+
* Added modern UI improvements
|
|
9
|
+
* Enhanced multi-language support
|
|
10
|
+
* Added brightness adjustment feature
|
|
11
|
+
* Improved annotation workflow
|
|
12
|
+
* Added GitHub Actions CI/CD
|
|
13
|
+
|
|
14
|
+
Note: This project is a fork and enhancement of the original labelImg project.
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: LabelCraft
|
|
3
|
+
Version: 1.8.6
|
|
4
|
+
Summary: LabelCraft - A modern graphical image annotation tool based on labelImg
|
|
5
|
+
Home-page: https://github.com/syd168/LabelCraft
|
|
6
|
+
Author: TzuTa Lin (Original labelImg), LabelCraft Contributors
|
|
7
|
+
Author-email: tzu.ta.lin@gmail.com
|
|
8
|
+
License: MIT license
|
|
9
|
+
Keywords: labelCraft labelImg labelTool development annotation deeplearning
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
22
|
+
Requires-Python: >=3.8.0
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: pyside6>=6.5.0
|
|
25
|
+
Requires-Dist: lxml>=4.9.0
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: author-email
|
|
28
|
+
Dynamic: classifier
|
|
29
|
+
Dynamic: description
|
|
30
|
+
Dynamic: description-content-type
|
|
31
|
+
Dynamic: home-page
|
|
32
|
+
Dynamic: keywords
|
|
33
|
+
Dynamic: license
|
|
34
|
+
Dynamic: requires-dist
|
|
35
|
+
Dynamic: requires-python
|
|
36
|
+
Dynamic: summary
|
|
37
|
+
|
|
38
|
+
LabelCraft - Image Annotation Tool
|
|
39
|
+
===================================
|
|
40
|
+
|
|
41
|
+
LabelCraft is a modern graphical image annotation tool based on labelImg.
|
|
42
|
+
|
|
43
|
+
Features
|
|
44
|
+
--------
|
|
45
|
+
|
|
46
|
+
- Support for multiple annotation formats (PASCAL VOC, YOLO, CreateML, COCO, CSV)
|
|
47
|
+
- Multi-language support
|
|
48
|
+
- Brightness adjustment
|
|
49
|
+
- Zoom and pan
|
|
50
|
+
- Keyboard shortcuts
|
|
51
|
+
- Predefined class management
|
|
52
|
+
- Annotation verification
|
|
53
|
+
- GitHub Actions automated builds
|
|
54
|
+
|
|
55
|
+
Note: This project is based on the original labelImg project by TzuTa Lin.
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
History
|
|
59
|
+
=======
|
|
60
|
+
|
|
61
|
+
1.8.6 (2024-XX-XX)
|
|
62
|
+
------------------
|
|
63
|
+
|
|
64
|
+
* Based on labelImg project
|
|
65
|
+
* Added modern UI improvements
|
|
66
|
+
* Enhanced multi-language support
|
|
67
|
+
* Added brightness adjustment feature
|
|
68
|
+
* Improved annotation workflow
|
|
69
|
+
* Added GitHub Actions CI/CD
|
|
70
|
+
|
|
71
|
+
Note: This project is a fork and enhancement of the original labelImg project.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
HISTORY.rst
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.rst
|
|
4
|
+
main.py
|
|
5
|
+
resources.py
|
|
6
|
+
resources.qrc
|
|
7
|
+
setup.cfg
|
|
8
|
+
setup.py
|
|
9
|
+
LabelCraft.egg-info/PKG-INFO
|
|
10
|
+
LabelCraft.egg-info/SOURCES.txt
|
|
11
|
+
LabelCraft.egg-info/dependency_links.txt
|
|
12
|
+
LabelCraft.egg-info/entry_points.txt
|
|
13
|
+
LabelCraft.egg-info/not-zip-safe
|
|
14
|
+
LabelCraft.egg-info/requires.txt
|
|
15
|
+
LabelCraft.egg-info/top_level.txt
|
|
16
|
+
data/coco_classes.txt
|
|
17
|
+
data/predefined_classes.txt
|
|
18
|
+
libs/__init__.py
|
|
19
|
+
libs/annotation_converter.py
|
|
20
|
+
libs/canvas.py
|
|
21
|
+
libs/coco_io.py
|
|
22
|
+
libs/colorDialog.py
|
|
23
|
+
libs/combobox.py
|
|
24
|
+
libs/constants.py
|
|
25
|
+
libs/create_ml_io.py
|
|
26
|
+
libs/csv_io.py
|
|
27
|
+
libs/default_label_combobox.py
|
|
28
|
+
libs/hashableQListWidgetItem.py
|
|
29
|
+
libs/i18n.py
|
|
30
|
+
libs/labelDialog.py
|
|
31
|
+
libs/labelFile.py
|
|
32
|
+
libs/lightWidget.py
|
|
33
|
+
libs/newProjectDialog.py
|
|
34
|
+
libs/pascal_voc_io.py
|
|
35
|
+
libs/project.py
|
|
36
|
+
libs/resources.py
|
|
37
|
+
libs/settings.py
|
|
38
|
+
libs/shape.py
|
|
39
|
+
libs/toolBar.py
|
|
40
|
+
libs/ustr.py
|
|
41
|
+
libs/utils.py
|
|
42
|
+
libs/yolo_io.py
|
|
43
|
+
libs/zoomWidget.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
include CONTRIBUTING.rst
|
|
2
|
+
include HISTORY.rst
|
|
3
|
+
include LICENSE
|
|
4
|
+
include README.rst
|
|
5
|
+
|
|
6
|
+
include resources.qrc
|
|
7
|
+
|
|
8
|
+
recursive-include data *
|
|
9
|
+
recursive-include icons *
|
|
10
|
+
recursive-include libs *
|
|
11
|
+
|
|
12
|
+
recursive-exclude build-tools *
|
|
13
|
+
recursive-exclude tests *
|
|
14
|
+
recursive-exclude * __pycache__
|
|
15
|
+
recursive-exclude * *.py[co]
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: LabelCraft
|
|
3
|
+
Version: 1.8.6
|
|
4
|
+
Summary: LabelCraft - A modern graphical image annotation tool based on labelImg
|
|
5
|
+
Home-page: https://github.com/syd168/LabelCraft
|
|
6
|
+
Author: TzuTa Lin (Original labelImg), LabelCraft Contributors
|
|
7
|
+
Author-email: tzu.ta.lin@gmail.com
|
|
8
|
+
License: MIT license
|
|
9
|
+
Keywords: labelCraft labelImg labelTool development annotation deeplearning
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics
|
|
22
|
+
Requires-Python: >=3.8.0
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: pyside6>=6.5.0
|
|
25
|
+
Requires-Dist: lxml>=4.9.0
|
|
26
|
+
Dynamic: author
|
|
27
|
+
Dynamic: author-email
|
|
28
|
+
Dynamic: classifier
|
|
29
|
+
Dynamic: description
|
|
30
|
+
Dynamic: description-content-type
|
|
31
|
+
Dynamic: home-page
|
|
32
|
+
Dynamic: keywords
|
|
33
|
+
Dynamic: license
|
|
34
|
+
Dynamic: requires-dist
|
|
35
|
+
Dynamic: requires-python
|
|
36
|
+
Dynamic: summary
|
|
37
|
+
|
|
38
|
+
LabelCraft - Image Annotation Tool
|
|
39
|
+
===================================
|
|
40
|
+
|
|
41
|
+
LabelCraft is a modern graphical image annotation tool based on labelImg.
|
|
42
|
+
|
|
43
|
+
Features
|
|
44
|
+
--------
|
|
45
|
+
|
|
46
|
+
- Support for multiple annotation formats (PASCAL VOC, YOLO, CreateML, COCO, CSV)
|
|
47
|
+
- Multi-language support
|
|
48
|
+
- Brightness adjustment
|
|
49
|
+
- Zoom and pan
|
|
50
|
+
- Keyboard shortcuts
|
|
51
|
+
- Predefined class management
|
|
52
|
+
- Annotation verification
|
|
53
|
+
- GitHub Actions automated builds
|
|
54
|
+
|
|
55
|
+
Note: This project is based on the original labelImg project by TzuTa Lin.
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
History
|
|
59
|
+
=======
|
|
60
|
+
|
|
61
|
+
1.8.6 (2024-XX-XX)
|
|
62
|
+
------------------
|
|
63
|
+
|
|
64
|
+
* Based on labelImg project
|
|
65
|
+
* Added modern UI improvements
|
|
66
|
+
* Enhanced multi-language support
|
|
67
|
+
* Added brightness adjustment feature
|
|
68
|
+
* Improved annotation workflow
|
|
69
|
+
* Added GitHub Actions CI/CD
|
|
70
|
+
|
|
71
|
+
Note: This project is a fork and enhancement of the original labelImg project.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
LabelCraft - Image Annotation Tool
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
LabelCraft is a modern graphical image annotation tool based on labelImg.
|
|
5
|
+
|
|
6
|
+
Features
|
|
7
|
+
--------
|
|
8
|
+
|
|
9
|
+
- Support for multiple annotation formats (PASCAL VOC, YOLO, CreateML, COCO, CSV)
|
|
10
|
+
- Multi-language support
|
|
11
|
+
- Brightness adjustment
|
|
12
|
+
- Zoom and pan
|
|
13
|
+
- Keyboard shortcuts
|
|
14
|
+
- Predefined class management
|
|
15
|
+
- Annotation verification
|
|
16
|
+
- GitHub Actions automated builds
|
|
17
|
+
|
|
18
|
+
Note: This project is based on the original labelImg project by TzuTa Lin.
|