labelimgplusplus 2.0.0a0__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.
- labelimgplusplus-2.0.0a0.dist-info/LICENSE +9 -0
- labelimgplusplus-2.0.0a0.dist-info/METADATA +282 -0
- labelimgplusplus-2.0.0a0.dist-info/RECORD +30 -0
- labelimgplusplus-2.0.0a0.dist-info/WHEEL +5 -0
- labelimgplusplus-2.0.0a0.dist-info/entry_points.txt +2 -0
- labelimgplusplus-2.0.0a0.dist-info/top_level.txt +1 -0
- libs/__init__.py +2 -0
- libs/canvas.py +748 -0
- libs/colorDialog.py +37 -0
- libs/combobox.py +33 -0
- libs/commands.py +328 -0
- libs/constants.py +26 -0
- libs/create_ml_io.py +135 -0
- libs/default_label_combobox.py +27 -0
- libs/galleryWidget.py +568 -0
- libs/hashableQListWidgetItem.py +28 -0
- libs/labelDialog.py +95 -0
- libs/labelFile.py +174 -0
- libs/lightWidget.py +33 -0
- libs/pascal_voc_io.py +171 -0
- libs/resources.py +4212 -0
- libs/settings.py +45 -0
- libs/shape.py +209 -0
- libs/stringBundle.py +78 -0
- libs/styles.py +82 -0
- libs/toolBar.py +275 -0
- libs/ustr.py +17 -0
- libs/utils.py +119 -0
- libs/yolo_io.py +143 -0
- libs/zoomWidget.py +26 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Copyright (c) <2015-Present> Tzutalin
|
|
2
|
+
|
|
3
|
+
Copyright (C) 2013 MIT, Computer Science and Artificial Intelligence Laboratory. Bryan Russell, Antonio Torralba, William T. Freeman
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: labelimgplusplus
|
|
3
|
+
Version: 2.0.0a0
|
|
4
|
+
Summary: labelImg++ is an enhanced graphical image annotation tool with Gallery Mode for browsing and labeling images
|
|
5
|
+
Author-email: Abhik Sarkar <abhiksark@gmail.com>
|
|
6
|
+
License: Copyright (c) <2015-Present> Tzutalin
|
|
7
|
+
|
|
8
|
+
Copyright (C) 2013 MIT, Computer Science and Artificial Intelligence Laboratory. Bryan Russell, Antonio Torralba, William T. Freeman
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
15
|
+
|
|
16
|
+
Project-URL: Homepage, https://github.com/abhiksark/labelImg-plus-plus
|
|
17
|
+
Project-URL: Repository, https://github.com/abhiksark/labelImg-plus-plus
|
|
18
|
+
Keywords: labelImg,labelImgPlusPlus,annotation,deeplearning,image-annotation,bounding-box,gallery
|
|
19
|
+
Classifier: Development Status :: 3 - Alpha
|
|
20
|
+
Classifier: Intended Audience :: Developers
|
|
21
|
+
Classifier: Intended Audience :: Science/Research
|
|
22
|
+
Classifier: Natural Language :: English
|
|
23
|
+
Classifier: Programming Language :: Python :: 3
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
30
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
31
|
+
Classifier: Topic :: Scientific/Engineering :: Image Recognition
|
|
32
|
+
Requires-Python: >=3.6
|
|
33
|
+
Description-Content-Type: text/x-rst
|
|
34
|
+
License-File: LICENSE
|
|
35
|
+
Requires-Dist: pyqt5
|
|
36
|
+
Requires-Dist: lxml
|
|
37
|
+
|
|
38
|
+
============
|
|
39
|
+
labelImg++
|
|
40
|
+
============
|
|
41
|
+
|
|
42
|
+
*A modern, enhanced image annotation tool for machine learning*
|
|
43
|
+
|
|
44
|
+
.. image:: https://img.shields.io/pypi/v/labelImgPlusPlus.svg
|
|
45
|
+
:target: https://pypi.org/project/labelImgPlusPlus/
|
|
46
|
+
|
|
47
|
+
.. image:: https://img.shields.io/pypi/dm/labelImgPlusPlus.svg
|
|
48
|
+
:target: https://pypi.org/project/labelImgPlusPlus/
|
|
49
|
+
|
|
50
|
+
.. image:: https://github.com/abhiksark/labelImg-plus-plus/actions/workflows/ci.yaml/badge.svg
|
|
51
|
+
:target: https://github.com/abhiksark/labelImg-plus-plus/actions
|
|
52
|
+
|
|
53
|
+
.. image:: https://img.shields.io/badge/python-3.6+-blue.svg
|
|
54
|
+
:target: https://www.python.org/downloads/
|
|
55
|
+
|
|
56
|
+
.. image:: https://img.shields.io/badge/license-MIT-green.svg
|
|
57
|
+
:target: https://github.com/abhiksark/labelImg-plus-plus/blob/master/LICENSE
|
|
58
|
+
|
|
59
|
+
----
|
|
60
|
+
|
|
61
|
+
**labelImg++** is a powerful graphical image annotation tool for creating bounding box labels, designed for machine learning and computer vision projects. Forked from the original `LabelImg <https://github.com/tzutalin/labelImg>`__ with significant enhancements.
|
|
62
|
+
|
|
63
|
+
.. image:: resources/demo/labelimg_screenshot.png
|
|
64
|
+
:alt: labelImg++ Screenshot
|
|
65
|
+
:align: center
|
|
66
|
+
|
|
67
|
+
Features
|
|
68
|
+
--------
|
|
69
|
+
|
|
70
|
+
Core Annotation Features
|
|
71
|
+
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
72
|
+
|
|
73
|
+
- **Multi-format support**: PASCAL VOC (XML), YOLO (TXT), CreateML (JSON)
|
|
74
|
+
- **Bounding box annotation** with drag-and-drop interface
|
|
75
|
+
- **Auto-save mode** for uninterrupted workflow
|
|
76
|
+
- **Predefined class labels** with customizable list
|
|
77
|
+
- **Verification system** to mark completed annotations
|
|
78
|
+
|
|
79
|
+
New in labelImg++ v2.0.0a
|
|
80
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
81
|
+
|
|
82
|
+
**Undo/Redo Support**
|
|
83
|
+
Full undo/redo for all annotation actions. Press **Ctrl+Z** to undo and **Ctrl+Y** to redo. Never lose your work again!
|
|
84
|
+
|
|
85
|
+
**Gallery Mode with Annotation Preview**
|
|
86
|
+
Visual thumbnail gallery showing all images with bounding box overlays directly on thumbnails.
|
|
87
|
+
|
|
88
|
+
- Colored borders indicate status: Gray (no labels), Blue (has labels), Green (verified)
|
|
89
|
+
- Bounding boxes visible on thumbnails for quick review
|
|
90
|
+
- Adjustable thumbnail size (40px - 300px)
|
|
91
|
+
- Press **Ctrl+G** to toggle gallery mode
|
|
92
|
+
|
|
93
|
+
**Modern UI with Feather Icons**
|
|
94
|
+
Clean, modern interface with beautiful Feather icons and improved visual design.
|
|
95
|
+
|
|
96
|
+
**Responsive DPI Scaling**
|
|
97
|
+
Icons and UI elements scale properly on high-DPI displays (4K, Retina).
|
|
98
|
+
|
|
99
|
+
**Expandable Toolbar**
|
|
100
|
+
Click the chevron at the bottom of the toolbar to expand/collapse and show full button labels.
|
|
101
|
+
|
|
102
|
+
**Consolidated File Menu**
|
|
103
|
+
Open File, Open Dir, and Change Save Dir combined into a single dropdown for cleaner toolbar.
|
|
104
|
+
|
|
105
|
+
**Brightness Adjustment**
|
|
106
|
+
Adjust image brightness on-the-fly to better see annotations on dark or light images.
|
|
107
|
+
|
|
108
|
+
Installation
|
|
109
|
+
------------
|
|
110
|
+
|
|
111
|
+
From PyPI (Recommended)
|
|
112
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
|
113
|
+
|
|
114
|
+
.. code:: shell
|
|
115
|
+
|
|
116
|
+
pip3 install labelImgPlusPlus
|
|
117
|
+
labelImgPlusPlus
|
|
118
|
+
|
|
119
|
+
With a specific image or directory:
|
|
120
|
+
|
|
121
|
+
.. code:: shell
|
|
122
|
+
|
|
123
|
+
labelImgPlusPlus [IMAGE_PATH] [PRE-DEFINED CLASS FILE] [SAVE_DIR]
|
|
124
|
+
|
|
125
|
+
Build from Source
|
|
126
|
+
~~~~~~~~~~~~~~~~~
|
|
127
|
+
|
|
128
|
+
**Ubuntu/Linux:**
|
|
129
|
+
|
|
130
|
+
.. code:: shell
|
|
131
|
+
|
|
132
|
+
sudo apt-get install pyqt5-dev-tools
|
|
133
|
+
pip3 install -r requirements/requirements-linux-python3.txt
|
|
134
|
+
make qt5py3
|
|
135
|
+
python3 labelImg.py
|
|
136
|
+
|
|
137
|
+
**macOS:**
|
|
138
|
+
|
|
139
|
+
.. code:: shell
|
|
140
|
+
|
|
141
|
+
pip3 install pyqt5 lxml
|
|
142
|
+
make qt5py3
|
|
143
|
+
python3 labelImg.py
|
|
144
|
+
|
|
145
|
+
**Windows:**
|
|
146
|
+
|
|
147
|
+
.. code:: shell
|
|
148
|
+
|
|
149
|
+
pip install pyqt5 lxml
|
|
150
|
+
pyrcc5 -o libs/resources.py resources.qrc
|
|
151
|
+
python labelImg.py
|
|
152
|
+
|
|
153
|
+
Quick Start
|
|
154
|
+
-----------
|
|
155
|
+
|
|
156
|
+
1. **Open images**: Click the file dropdown button or press **Ctrl+U** to load a directory
|
|
157
|
+
2. **Create annotations**: Press **W** or click **Create RectBox**, then drag to draw
|
|
158
|
+
3. **Label objects**: Select a class from the popup dialog
|
|
159
|
+
4. **Save**: Press **Ctrl+S** to save annotations
|
|
160
|
+
5. **Navigate**: Use **D** (next) and **A** (previous) to move between images
|
|
161
|
+
6. **Review**: Press **Ctrl+G** for gallery mode to review all annotations
|
|
162
|
+
|
|
163
|
+
Supported Annotation Formats
|
|
164
|
+
----------------------------
|
|
165
|
+
|
|
166
|
+
+---------------+------------+------------------------------------------+
|
|
167
|
+
| Format | Extension | Description |
|
|
168
|
+
+===============+============+==========================================+
|
|
169
|
+
| PASCAL VOC | .xml | ImageNet format, absolute coordinates |
|
|
170
|
+
+---------------+------------+------------------------------------------+
|
|
171
|
+
| YOLO | .txt | Normalized coordinates (0-1), with |
|
|
172
|
+
| | | classes.txt for class names |
|
|
173
|
+
+---------------+------------+------------------------------------------+
|
|
174
|
+
| CreateML | .json | Apple's ML format for iOS/macOS |
|
|
175
|
+
+---------------+------------+------------------------------------------+
|
|
176
|
+
|
|
177
|
+
Keyboard Shortcuts
|
|
178
|
+
------------------
|
|
179
|
+
|
|
180
|
+
**File Operations**
|
|
181
|
+
|
|
182
|
+
+--------------------+--------------------------------------------+
|
|
183
|
+
| Ctrl + O | Open file |
|
|
184
|
+
+--------------------+--------------------------------------------+
|
|
185
|
+
| Ctrl + U | Open directory |
|
|
186
|
+
+--------------------+--------------------------------------------+
|
|
187
|
+
| Ctrl + R | Change save directory |
|
|
188
|
+
+--------------------+--------------------------------------------+
|
|
189
|
+
| Ctrl + S | Save current annotation |
|
|
190
|
+
+--------------------+--------------------------------------------+
|
|
191
|
+
| Ctrl + Shift + S | Save as |
|
|
192
|
+
+--------------------+--------------------------------------------+
|
|
193
|
+
|
|
194
|
+
**Navigation**
|
|
195
|
+
|
|
196
|
+
+--------------------+--------------------------------------------+
|
|
197
|
+
| D | Next image |
|
|
198
|
+
+--------------------+--------------------------------------------+
|
|
199
|
+
| A | Previous image |
|
|
200
|
+
+--------------------+--------------------------------------------+
|
|
201
|
+
| Ctrl + G | Toggle Gallery Mode |
|
|
202
|
+
+--------------------+--------------------------------------------+
|
|
203
|
+
|
|
204
|
+
**Annotation**
|
|
205
|
+
|
|
206
|
+
+--------------------+--------------------------------------------+
|
|
207
|
+
| W | Create bounding box |
|
|
208
|
+
+--------------------+--------------------------------------------+
|
|
209
|
+
| Ctrl + Z | Undo |
|
|
210
|
+
+--------------------+--------------------------------------------+
|
|
211
|
+
| Ctrl + Y | Redo |
|
|
212
|
+
+--------------------+--------------------------------------------+
|
|
213
|
+
| Ctrl + D | Duplicate selected box |
|
|
214
|
+
+--------------------+--------------------------------------------+
|
|
215
|
+
| Del | Delete selected box |
|
|
216
|
+
+--------------------+--------------------------------------------+
|
|
217
|
+
| Space | Mark image as verified |
|
|
218
|
+
+--------------------+--------------------------------------------+
|
|
219
|
+
| Arrow keys | Move selected box |
|
|
220
|
+
+--------------------+--------------------------------------------+
|
|
221
|
+
|
|
222
|
+
**View**
|
|
223
|
+
|
|
224
|
+
+--------------------+--------------------------------------------+
|
|
225
|
+
| Ctrl + + | Zoom in |
|
|
226
|
+
+--------------------+--------------------------------------------+
|
|
227
|
+
| Ctrl + - | Zoom out |
|
|
228
|
+
+--------------------+--------------------------------------------+
|
|
229
|
+
| Ctrl + F | Fit window |
|
|
230
|
+
+--------------------+--------------------------------------------+
|
|
231
|
+
| Ctrl + Shift + F | Fit width |
|
|
232
|
+
+--------------------+--------------------------------------------+
|
|
233
|
+
|
|
234
|
+
Configuration
|
|
235
|
+
-------------
|
|
236
|
+
|
|
237
|
+
**Predefined Classes**
|
|
238
|
+
|
|
239
|
+
Edit ``data/predefined_classes.txt`` to customize the label options:
|
|
240
|
+
|
|
241
|
+
.. code::
|
|
242
|
+
|
|
243
|
+
dog
|
|
244
|
+
cat
|
|
245
|
+
person
|
|
246
|
+
car
|
|
247
|
+
bicycle
|
|
248
|
+
|
|
249
|
+
**Reset Settings**
|
|
250
|
+
|
|
251
|
+
If you encounter issues, reset the settings:
|
|
252
|
+
|
|
253
|
+
.. code:: shell
|
|
254
|
+
|
|
255
|
+
rm ~/.labelImgSettings.pkl
|
|
256
|
+
|
|
257
|
+
Or use **Menu > File > Reset All**
|
|
258
|
+
|
|
259
|
+
Contributing
|
|
260
|
+
------------
|
|
261
|
+
|
|
262
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
263
|
+
|
|
264
|
+
1. Fork the repository
|
|
265
|
+
2. Create your feature branch (``git checkout -b feature/amazing-feature``)
|
|
266
|
+
3. Commit your changes (``git commit -m 'Add amazing feature'``)
|
|
267
|
+
4. Push to the branch (``git push origin feature/amazing-feature``)
|
|
268
|
+
5. Open a Pull Request
|
|
269
|
+
|
|
270
|
+
License
|
|
271
|
+
-------
|
|
272
|
+
|
|
273
|
+
`MIT License <https://github.com/abhiksark/labelImg-plus-plus/blob/master/LICENSE>`_
|
|
274
|
+
|
|
275
|
+
Based on `LabelImg <https://github.com/HumanSignal/labelImg>`__ by `Tzutalin <https://github.com/tzutalin>`__.
|
|
276
|
+
|
|
277
|
+
Acknowledgments
|
|
278
|
+
---------------
|
|
279
|
+
|
|
280
|
+
- Original `LabelImg <https://github.com/tzutalin/labelImg>`__ by Tzutalin
|
|
281
|
+
- `Feather Icons <https://feathericons.com/>`__ for modern iconography
|
|
282
|
+
- All contributors and users of labelImg++
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
libs/__init__.py,sha256=USEgDASVn9G68_U3gYMXdqOsEBy4PXoAOiMuzHgyqhg,87
|
|
2
|
+
libs/canvas.py,sha256=ajRxSm41e95QJVUVpuBhlI6FHye9NRH2jtT7g-RJ6XI,28570
|
|
3
|
+
libs/colorDialog.py,sha256=Y1YmP5wkeCX6PjZ7Nemi7v20woINM3HoJMlEncV8en0,1295
|
|
4
|
+
libs/combobox.py,sha256=UZIOgP51ptsAWKZzUi_zjChOQ3rDvig727kLBxIu6LE,967
|
|
5
|
+
libs/commands.py,sha256=Y5wChOJFF5JajiWuiWPDvC9rgwt0olsPZiHlLTOl7qc,9823
|
|
6
|
+
libs/constants.py,sha256=2wpLnBHgvsVwg_xCzg9BxAfFo0VF4i1zh6PnjyvDFnM,970
|
|
7
|
+
libs/create_ml_io.py,sha256=B8XRDRQ1PUjfuH2Qqw7jyvGbO6oCB7Oy2WhcqieaDpo,3978
|
|
8
|
+
libs/default_label_combobox.py,sha256=QlXWZMYy0oHjsgRiFBYbwv2Ir10qkuDjFu5vNoOBCJQ,880
|
|
9
|
+
libs/galleryWidget.py,sha256=w1aYdpG2veMICqqQnOdZUXqwScgQGPij2p__8ZqPT0g,20395
|
|
10
|
+
libs/hashableQListWidgetItem.py,sha256=eepvodkQzmIj2unPawBvrRN2yTfYa9xvJV9NxgrltUY,784
|
|
11
|
+
libs/labelDialog.py,sha256=VOgGncSs4owKbfzN7tq43cCxNEGFYu0Hw6XYNGz5-MY,3613
|
|
12
|
+
libs/labelFile.py,sha256=gUu-sJWQ4Q7BgCjli6t4l4lJ0c0ynzvV0gC9QVHN9bg,6267
|
|
13
|
+
libs/lightWidget.py,sha256=yHq2-slvWcCt86Nq7SCJbK6cyaTQ_Arf7e3FVN19poA,964
|
|
14
|
+
libs/pascal_voc_io.py,sha256=IHwovl8pp-r9wiE80_W_CQc6GGSb1MNj6U4-snZdKfM,6324
|
|
15
|
+
libs/resources.py,sha256=3syGsE2gfOpWLQ9kKi7isRCKFWbCCpBExTzZciDcsYw,260710
|
|
16
|
+
libs/settings.py,sha256=23G7sr1Kap7akoJIHIamOW7E7Ekt3a6V6-NCqoWMjaM,1227
|
|
17
|
+
libs/shape.py,sha256=1GxM_05XKOItV29h-qw7bfefOzKbhXmp7a8Aj2nXp2M,6693
|
|
18
|
+
libs/stringBundle.py,sha256=-SPJYaHtcoPbDA0E_cNyCAjfrM4MkKVt7EUHw17hp1E,2527
|
|
19
|
+
libs/styles.py,sha256=su9bHujVD-IlRo946EBz512-7Dqj2P_dUWc9eBDo-VE,1342
|
|
20
|
+
libs/toolBar.py,sha256=k3LhlYIv4RGZlrvuMFuBeXAjdp7oVRlcKvM9Xg7H7TU,9341
|
|
21
|
+
libs/ustr.py,sha256=sr_TkTfZx4UJ3Tu8Z7IvwxFSYykDm0v7477icRoJwRI,534
|
|
22
|
+
libs/utils.py,sha256=75-HxH3LGhHErl7iFpU9zRV9-DEFNRXe4f-a4z7n5fQ,2976
|
|
23
|
+
libs/yolo_io.py,sha256=Awm4LKYWZr6sp48x-jiheGC_GY8oy1Z18l5rqunC5r0,4877
|
|
24
|
+
libs/zoomWidget.py,sha256=-_LbMhnNMZor2meLYq43y6apiXi_RJ46wiv-Cc0UBfg,780
|
|
25
|
+
labelimgplusplus-2.0.0a0.dist-info/LICENSE,sha256=EtuQeyd5h-RJHwFcej4o_LY6Z3XAFSUWD2S-jOguuBE,1197
|
|
26
|
+
labelimgplusplus-2.0.0a0.dist-info/METADATA,sha256=Jx66hJIKGV3adzLwCaUEdgEmQoiGLW8UMPopHx_NX74,11300
|
|
27
|
+
labelimgplusplus-2.0.0a0.dist-info/WHEEL,sha256=9uxZoSpL6JRfaGtcvCNGfS6CY9hGbAPURn80D6h5sVY,92
|
|
28
|
+
labelimgplusplus-2.0.0a0.dist-info/entry_points.txt,sha256=sjrWP-colby2ldbaB8tqFRblHHsqASTXpVjs5z8qvUM,60
|
|
29
|
+
labelimgplusplus-2.0.0a0.dist-info/top_level.txt,sha256=0b_zhmMbmmxcl-UpEdQJY_SLzF0Agycg9RbRybkSJhc,5
|
|
30
|
+
labelimgplusplus-2.0.0a0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
libs
|
libs/__init__.py
ADDED