Skip to content

Commit c65651c

Browse files
committed
v1.1.0 release
1 parent 970a8a8 commit c65651c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

patched_yolo_infer/functions_extra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def visualize_results_usual_yolo_inference(
121121
mask_contours, _ = cv2.findContours(
122122
mask_resized.astype(np.uint8), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE
123123
)
124-
124+
125125
if fill_mask:
126126
color_mask = np.zeros_like(img)
127127
color_mask[mask_resized > 0] = color

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = "\n" + fh.read()
99

1010

11-
VERSION = '1.0.5'
11+
VERSION = '1.1.0'
1212
DESCRIPTION = '''YOLO-Patch-Based-Inference for detection/segmentation of small objects in images.'''
1313

1414
setup(
@@ -39,16 +39,16 @@
3939
"instance segmentation",
4040
"patch-based inference",
4141
"small object detection",
42-
"yolov8-seg"
43-
"image patching"
44-
"yolo visualization"
42+
"yolov8-seg",
43+
"image patching",
44+
"yolo visualization",
4545
"slice-based inference",
4646
"slicing inference",
4747
"inference visualization",
4848
"patchify",
4949
],
5050
classifiers=[
51-
"Development Status :: 4 - Beta",
51+
"Development Status :: 5 - Production/Stable",
5252
"Intended Audience :: Developers",
5353
"Programming Language :: Python :: 3",
5454
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)