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.
Files changed (44) hide show
  1. labelcraft-1.8.6/HISTORY.rst +14 -0
  2. labelcraft-1.8.6/LabelCraft.egg-info/PKG-INFO +71 -0
  3. labelcraft-1.8.6/LabelCraft.egg-info/SOURCES.txt +43 -0
  4. labelcraft-1.8.6/LabelCraft.egg-info/dependency_links.txt +1 -0
  5. labelcraft-1.8.6/LabelCraft.egg-info/entry_points.txt +2 -0
  6. labelcraft-1.8.6/LabelCraft.egg-info/not-zip-safe +1 -0
  7. labelcraft-1.8.6/LabelCraft.egg-info/requires.txt +2 -0
  8. labelcraft-1.8.6/LabelCraft.egg-info/top_level.txt +3 -0
  9. labelcraft-1.8.6/MANIFEST.in +15 -0
  10. labelcraft-1.8.6/PKG-INFO +71 -0
  11. labelcraft-1.8.6/README.rst +18 -0
  12. labelcraft-1.8.6/data/coco_classes.txt +21 -0
  13. labelcraft-1.8.6/data/predefined_classes.txt +15 -0
  14. labelcraft-1.8.6/libs/__init__.py +2 -0
  15. labelcraft-1.8.6/libs/annotation_converter.py +531 -0
  16. labelcraft-1.8.6/libs/canvas.py +771 -0
  17. labelcraft-1.8.6/libs/coco_io.py +102 -0
  18. labelcraft-1.8.6/libs/colorDialog.py +38 -0
  19. labelcraft-1.8.6/libs/combobox.py +23 -0
  20. labelcraft-1.8.6/libs/constants.py +20 -0
  21. labelcraft-1.8.6/libs/create_ml_io.py +135 -0
  22. labelcraft-1.8.6/libs/csv_io.py +53 -0
  23. labelcraft-1.8.6/libs/default_label_combobox.py +23 -0
  24. labelcraft-1.8.6/libs/hashableQListWidgetItem.py +15 -0
  25. labelcraft-1.8.6/libs/i18n.py +86 -0
  26. labelcraft-1.8.6/libs/labelDialog.py +91 -0
  27. labelcraft-1.8.6/libs/labelFile.py +267 -0
  28. labelcraft-1.8.6/libs/lightWidget.py +85 -0
  29. labelcraft-1.8.6/libs/newProjectDialog.py +220 -0
  30. labelcraft-1.8.6/libs/pascal_voc_io.py +171 -0
  31. labelcraft-1.8.6/libs/project.py +199 -0
  32. labelcraft-1.8.6/libs/resources.py +34899 -0
  33. labelcraft-1.8.6/libs/settings.py +45 -0
  34. labelcraft-1.8.6/libs/shape.py +205 -0
  35. labelcraft-1.8.6/libs/toolBar.py +35 -0
  36. labelcraft-1.8.6/libs/ustr.py +6 -0
  37. labelcraft-1.8.6/libs/utils.py +109 -0
  38. labelcraft-1.8.6/libs/yolo_io.py +155 -0
  39. labelcraft-1.8.6/libs/zoomWidget.py +85 -0
  40. labelcraft-1.8.6/main.py +4455 -0
  41. labelcraft-1.8.6/resources.py +16023 -0
  42. labelcraft-1.8.6/resources.qrc +46 -0
  43. labelcraft-1.8.6/setup.cfg +13 -0
  44. 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,2 @@
1
+ [gui_scripts]
2
+ labelcraft = main:main
@@ -0,0 +1,2 @@
1
+ pyside6>=6.5.0
2
+ lxml>=4.9.0
@@ -0,0 +1,3 @@
1
+ libs
2
+ main
3
+ resources
@@ -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.
@@ -0,0 +1,21 @@
1
+ person
2
+ car
3
+ bicycle
4
+ motorcycle
5
+ bus
6
+ truck
7
+ traffic light
8
+ fire hydrant
9
+ stop sign
10
+ parking meter
11
+ bench
12
+ bird
13
+ cat
14
+ dog
15
+ horse
16
+ sheep
17
+ cow
18
+ elephant
19
+ bear
20
+ zebra
21
+ giraffe
@@ -0,0 +1,15 @@
1
+ dog
2
+ person
3
+ cat
4
+ tv
5
+ car
6
+ meatballs
7
+ marinara sauce
8
+ tomato soup
9
+ chicken noodle soup
10
+ french onion soup
11
+ chicken breast
12
+ ribs
13
+ pulled pork
14
+ hamburger
15
+ cavity
@@ -0,0 +1,2 @@
1
+ __version_info__ = ('1', '8', '6')
2
+ __version__ = '.'.join(__version_info__)