You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-17
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
-
This repository contains the implementation of *DR-SPAAM: A Spatial-Attention and Auto-regressive Model for Person Detection in 2D Range Data* ([arXiv](https://arxiv.org/abs/2004.14079)).
1
+
This repository contains the implementation of *DR-SPAAM: A Spatial-Attention and Auto-regressive Model for Person Detection in 2D Range Data*
2
+
to appear in IROS'20 ([arXiv](https://arxiv.org/abs/2004.14079)).
2
3
3
4
# DR-SPAAM Detector
4
5
DR-SPAAM is a deep learning based person detector that detects persons in 2D range sequences obtained from a laser scanner.
@@ -9,12 +10,11 @@ Although DR-SPAAM is a detector, it can generate simple tracklets, based on its
9
10
10
11

11
12
12
-
To interface with many robotic applications, an example ROS node is also included.
13
+
To interface with many robotic applications, an example ROS node is included.
13
14
The ROS node, `dr_spaam_ros` subscribes to the laser scan (`sensor_msgs/LaserScan`)
14
-
and publishes detections as `geometry_msgs/PoseArray`.
15
-
The topics are defined in `dr_spaam_ros/config/topics.yaml`.
16
-
To use a different message defination, simply modify `_detections_to_ros_msg`
17
-
method in `dr_spaam_ros/src/dr_spaam_ros/dr_spaam_ros.py`.
15
+
and publishes detections as `geometry_msgs/PoseArray` and visualization markers for RViz.
16
+
17
+

18
18
19
19

20
20
@@ -41,6 +41,7 @@ dr_spaam
41
41
│ │ ├── val
42
42
├── ckpts
43
43
│ ├── drow_e40.pth
44
+
│ ├── drow5_e40.pth
44
45
│ ├── dr_spaam_e40.pth
45
46
...
46
47
```
@@ -68,11 +69,16 @@ Here's a minimum example.
68
69
import numpy as np
69
70
from dr_spaam.detector import Detector
70
71
71
-
# Detector class wraps up preprocessing, inference, and postprocessing for
72
-
# DR-SPAAM. Set `original_drow=True` to use the original DROW model instead.
73
-
# Use `stride` to skip scan points if faster inference speed is needed.
72
+
# Detector class wraps up preprocessing, inference, and postprocessing for DR-SPAAM.
73
+
# Checkout the comment in the code for meanings of the parameters.
0 commit comments