Skip to content

Commit 2dfa4a6

Browse files
committed
fix doc
1 parent 4eaae15 commit 2dfa4a6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Class implementing cropping and passing crops through a neural network for detec
112112
|-----------------------|------------------------|--------------|----------------------------------------------------------------------------------------------------------------|
113113
| image | np.ndarray | | The input image in BGR format. |
114114
| model_path | str | "yolo11m.pt" | Path to the YOLO model. |
115-
| model | ultralytics model | None | Pre-initialized model object. If provided, the model will be used directly instead of loading from model_path. |
115+
| model | Ultralytics model | None | Pre-initialized model object. If provided, the model will be used directly instead of loading from model_path. |
116116
| imgsz | int | 640 | Size of the input image for inference YOLO. |
117117
| conf | float | 0.25 | Confidence threshold for detections YOLO. |
118118
| iou | float | 0.7 | IoU threshold for non-maximum suppression YOLO of single crop. |
@@ -127,6 +127,8 @@ Class implementing cropping and passing crops through a neural network for detec
127127
| memory_optimize | bool | True | Memory optimization option for segmentation (less accurate results when enabled). |
128128
| inference_extra_args | dict | None | Dictionary with extra ultralytics [inference parameters](https://docs.ultralytics.com/modes/predict/#inference-arguments) (possible keys: half, device, max_det, augment, agnostic_nms and retina_masks) |
129129
| batch_inference | bool | False | Batch inference of image crops through a neural network instead of sequential passes of crops (ps: faster inference, higher gpu memory use). |
130+
| show_processing_status | bool | False | Whether to show the processing status using tqdm. |
131+
| progress_callback | Callable | None | Optional custom callback function, (task: str, current: int, total: int). |
130132

131133

132134
**CombineDetections**

0 commit comments

Comments
 (0)