-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.local.yml
49 lines (43 loc) · 1.15 KB
/
compose.local.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
version: '3'
services:
object_detector:
image: but5gera/ros2_object_detection:0.3.0
environment:
ROS_DOMAIN_ID: 34
INPUT_TOPIC: /image_raw
OUTPUT_TOPIC: /res
NETAPP_TORCH_DEVICE: cpu
#NETAPP_MODEL_VARIANT: yolov3_mobilenet
NETAPP_MODEL_VARIANT: yolo_dark_net2
#NETAPP_MODEL_VARIANT: mask_rcnn_r50
network_mode: host
visualizer_node:
build: ./../nodes
command: python3 /root/detection_publisher.py
volumes:
- ./../nodes/:/root
environment:
ROS_DOMAIN_ID: 34
DRAW_PERSONS_ONLY: true # show "person" class only
INPUT_IMAGES: /image_raw_x
OUTPUT_IMAGES: /bounding_boxes
RESULTS: /res_x
network_mode: host
ipc: host
decompression_node:
build: ./../nodes
command: python3 /root/uncompressor.py
volumes:
- ./../nodes/:/root
environment:
ROS_DOMAIN_ID: 34
network_mode: host
ipc: host
# bbow_visualizer:
# image: but5gera/ros2_detection_publisher:1.0.0
# environment:
# ROS_DOMAIN_ID: 34
# INPUT_IMAGES: /image_raw
# OUTPUT_IMAGES: /bounding_boxes
# RESULTS: /res
# network_mode: host