segment-toolkit 1.0.2__tar.gz → 1.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: segment_toolkit
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A Python toolkit to convert between binary segmentation masks and YOLO labels
5
5
  Home-page: https://github.com/zkzkGamal/mask-to-yolo-toolkit
6
6
  Author: Zakria Gamal
@@ -61,7 +61,7 @@ If you want to clone the repository for local development, run:
61
61
  git clone https://github.com/zkzkGamal/mask-to-yolo-toolkit.git
62
62
 
63
63
  # Navigate into the project folder
64
- cd LabelFile-for-yoloModel
64
+ cd mask-to-yolo-toolkit
65
65
 
66
66
  # Install in editable mode
67
67
  pip install -e .
@@ -144,10 +144,10 @@ To verify the library, we run automated validation on sample datasets. All valid
144
144
  Here are the bounding box overlays generated by the toolkit visualizer:
145
145
 
146
146
  #### ISIC Melanoma Skin Lesion Validation
147
- ![ISIC Validation Overlay](file:///home/aloha-zkaria/LabelFile-for-yoloModel/validate_data/scratch_val_isic_vis.png)
147
+ [![ISIC Validation Overlay](assets/scratch_val_isic_vis.png)](assets/scratch_val_isic_vis.png)
148
148
 
149
149
  #### Plant Leaf Disease Validation
150
- ![Plant Leaf Validation Overlay](file:///home/aloha-zkaria/LabelFile-for-yoloModel/validate_data/scratch_val_plant_vis.png)
150
+ [![Plant Leaf Validation Overlay](assets/scratch_val_plant_vis.png)](assets/scratch_val_plant_vis.png)
151
151
 
152
152
  ### Video Demonstration
153
153
  A video demonstrating installation, CLI commands, and programming API pipelines can be placed in the [demo/](file:///home/aloha-zkaria/LabelFile-for-yoloModel/demo) directory.
@@ -35,7 +35,7 @@ If you want to clone the repository for local development, run:
35
35
  git clone https://github.com/zkzkGamal/mask-to-yolo-toolkit.git
36
36
 
37
37
  # Navigate into the project folder
38
- cd LabelFile-for-yoloModel
38
+ cd mask-to-yolo-toolkit
39
39
 
40
40
  # Install in editable mode
41
41
  pip install -e .
@@ -118,10 +118,10 @@ To verify the library, we run automated validation on sample datasets. All valid
118
118
  Here are the bounding box overlays generated by the toolkit visualizer:
119
119
 
120
120
  #### ISIC Melanoma Skin Lesion Validation
121
- ![ISIC Validation Overlay](file:///home/aloha-zkaria/LabelFile-for-yoloModel/validate_data/scratch_val_isic_vis.png)
121
+ [![ISIC Validation Overlay](assets/scratch_val_isic_vis.png)](assets/scratch_val_isic_vis.png)
122
122
 
123
123
  #### Plant Leaf Disease Validation
124
- ![Plant Leaf Validation Overlay](file:///home/aloha-zkaria/LabelFile-for-yoloModel/validate_data/scratch_val_plant_vis.png)
124
+ [![Plant Leaf Validation Overlay](assets/scratch_val_plant_vis.png)](assets/scratch_val_plant_vis.png)
125
125
 
126
126
  ### Video Demonstration
127
127
  A video demonstrating installation, CLI commands, and programming API pipelines can be placed in the [demo/](file:///home/aloha-zkaria/LabelFile-for-yoloModel/demo) directory.
@@ -2,7 +2,7 @@
2
2
  Segment Toolkit: A library and CLI tool for converting binary segmentation masks to YOLO labels and vice versa.
3
3
  """
4
4
 
5
- __version__ = "1.0.1"
5
+ __version__ = "1.0.3"
6
6
 
7
7
  import sys
8
8
  import subprocess
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: segment_toolkit
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: A Python toolkit to convert between binary segmentation masks and YOLO labels
5
5
  Home-page: https://github.com/zkzkGamal/mask-to-yolo-toolkit
6
6
  Author: Zakria Gamal
@@ -61,7 +61,7 @@ If you want to clone the repository for local development, run:
61
61
  git clone https://github.com/zkzkGamal/mask-to-yolo-toolkit.git
62
62
 
63
63
  # Navigate into the project folder
64
- cd LabelFile-for-yoloModel
64
+ cd mask-to-yolo-toolkit
65
65
 
66
66
  # Install in editable mode
67
67
  pip install -e .
@@ -144,10 +144,10 @@ To verify the library, we run automated validation on sample datasets. All valid
144
144
  Here are the bounding box overlays generated by the toolkit visualizer:
145
145
 
146
146
  #### ISIC Melanoma Skin Lesion Validation
147
- ![ISIC Validation Overlay](file:///home/aloha-zkaria/LabelFile-for-yoloModel/validate_data/scratch_val_isic_vis.png)
147
+ [![ISIC Validation Overlay](assets/scratch_val_isic_vis.png)](assets/scratch_val_isic_vis.png)
148
148
 
149
149
  #### Plant Leaf Disease Validation
150
- ![Plant Leaf Validation Overlay](file:///home/aloha-zkaria/LabelFile-for-yoloModel/validate_data/scratch_val_plant_vis.png)
150
+ [![Plant Leaf Validation Overlay](assets/scratch_val_plant_vis.png)](assets/scratch_val_plant_vis.png)
151
151
 
152
152
  ### Video Demonstration
153
153
  A video demonstrating installation, CLI commands, and programming API pipelines can be placed in the [demo/](file:///home/aloha-zkaria/LabelFile-for-yoloModel/demo) directory.
@@ -10,7 +10,7 @@ except FileNotFoundError:
10
10
 
11
11
  setup(
12
12
  name="segment_toolkit",
13
- version="1.0.2",
13
+ version="1.0.3",
14
14
  description="A Python toolkit to convert between binary segmentation masks and YOLO labels",
15
15
  long_description=long_description,
16
16
  long_description_content_type="text/markdown",