Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonzs13 committed Oct 31, 2024
1 parent fe47796 commit b7a5d6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ These are the parameters from the [yolo.launch.py](./yolo_bringup/launch/yolo.la
- **device**: GPU/CUDA (default: cuda:0)
- **enable**: whether to start YOLO enabled (default: True)
- **threshold**: detection threshold (default: 0.5)
- **iou**: intersection Over Union (IoU) threshold for Non-Maximum Suppression (NMS) (default: 0.5)
- **imgsz_height**: image height for inference (default: 640)
- **iou**: intersection Over Union (IoU) threshold for Non-Maximum Suppression (NMS) (default: 0.7)
- **imgsz_height**: image height for inference (default: 480)
- **imgsz_width**: image width for inference (default: 640)
- **half**: whether to enable half-precision (FP16) inference speeding up model inference with minimal impact on accuracy (default: False)
- **max_det**: maximum number of detections allowed per image (default: 300)
Expand All @@ -142,7 +142,7 @@ These are the parameters from the [yolo.launch.py](./yolo_bringup/launch/yolo.la
- **use_3d**: whether to activate 3D detections (default: False)
- **use_debug**: whether to activate debug node (default: True)

## Lifecycle nodes
## Lifecycle Nodes

Previous updates add Lifecycle Nodes support to all the nodes available in the package.
This implementation tries to reduce the workload in the unconfigured and inactive states by only loading the models and activating the subscriber on the active state.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opencv-python>=4.8.1.78
typing-extensions>=4.4.0
ultralytics==8.3.18
ultralytics==8.3.26
super-gradients==3.7.1
lap==0.4.0
2 changes: 1 addition & 1 deletion yolo_bringup/launch/yolo.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def run_yolo(context: LaunchContext, use_tracking, use_3d):
imgsz_height = LaunchConfiguration("imgsz_height")
imgsz_height_cmd = DeclareLaunchArgument(
"imgsz_height",
default_value="640",
default_value="480",
description="Image height for inference",
)

Expand Down

0 comments on commit b7a5d6f

Please sign in to comment.