Skip to content

Commit 16060df

Browse files
committed
update yolox_params for switching pub-sub interface
1 parent 9184a21 commit 16060df

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

yolox_ros_cpp/yolox_param/src/yolox_parameters.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ yolox_parameters:
66
model_path:
77
type: string
88
description: "Path to the model file."
9-
default_value: "./src/YOLOX-ROS/weights/tflite/model.tflite"
9+
default_value: "example.onnx"
1010
class_labels_path:
1111
type: string
1212
description: "Path to the class labels file."
@@ -38,9 +38,9 @@ yolox_parameters:
3838
openvino_device:
3939
type: string
4040
description: "OpenVINO device."
41-
default_value: "CPU"
41+
default_value: "AUTO"
4242
validation: {
43-
one_of<>: [["CPU", "GPU", "MYRIAD"]]
43+
one_of<>: [["AUTO", "CPU", "GPU", "NPU", "MYRIAD"]]
4444
}
4545
onnxruntime_use_cuda:
4646
type: bool
@@ -86,3 +86,11 @@ yolox_parameters:
8686
type: string
8787
description: "Publish bounding box topic name."
8888
default_value: "yolox/bounding_boxes"
89+
use_bbox_ex_msgs:
90+
type: bool
91+
description: "Enable or disable bbox_ex_msgs. If true, disable vision_msgs::Detection2DArray."
92+
default_value: false
93+
publish_resized_image:
94+
type: bool
95+
description: "Enable or disable resized image."
96+
default_value: false

0 commit comments

Comments
 (0)