Skip to content

Commit 2366eac

Browse files
committed
new release
1 parent 561ec16 commit 2366eac

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

patched_yolo_infer/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,9 @@ shape_x, shape_y, overlap_x, overlap_y = auto_calculate_crop_values(
223223
image=img, mode="network_based", model=YOLO("yolov8m.pt")
224224
)
225225
```
226+
227+
---
228+
229+
## __Implementing Patching at Different Resolutions__
230+
231+
There is an opportunity to produce cropping into patches at different resolutions. This way, small objects can be detected when cropping into smaller patches, and large objects can be detected when cropping into larger patches. As a result, the algorithm will be able to detect a wider range of object sizes in the frame. To achieve this, the image needs to be processed multiple times through MakeCropsDetectThem with different patch parameters, and then pass the list of element_crops to the CombineDetections process.

setup.py

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

1010

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

1414
setup(
@@ -33,6 +33,7 @@
3333
"yolov8",
3434
"yolov9",
3535
"yolov10",
36+
"yolov11",
3637
"rtdetr",
3738
"fastsam",
3839
"sahi",

0 commit comments

Comments
 (0)