Skip to content

Commit 64aba2e

Browse files
committed
update
1 parent 9355b30 commit 64aba2e

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

‎object_tracking/README.md‎

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,27 @@
66
This package includes **Ground Removal, Object Clustering, Bounding Box, IMM-UKF-JPDAF, Track Management and Object Classification** for 3D-LIDAR multi object tracking.
77
The idea is mainly come from this [paper](https://repository.tudelft.nl/islandora/object/uuid:f536b829-42ae-41d5-968d-13bbaa4ec736?collection=education).
88

9+
@[双愚](https://github.com/HuangCongQing) modified , 若fork或star请注明来源
10+
911
### Setup
1012
##### Frameworks and Packages
1113
Make sure you have the following is installed:
1214
- [ROS Kinetic](http://wiki.ros.org/kinetic)
1315
- [PCL 1.7.2](http://pointclouds.org/downloads/)
14-
- [Open CV 3.2](https://opencv.org/)
16+
- [Open CV 3.2](https://opencv.org/)【PCL自带opencv,不用安装】
1517

1618
##### Dataset
1719
* Download the [Kitti Raw data](http://www.cvlibs.net/datasets/kitti/raw_data.php).
1820

1921
```
22+
// 地址已失效
23+
2024
wget http://kitti.is.tue.mpg.de/kitti/raw_data/2011_09_26_drive_0002/2011_09_26_drive_0005_sync.zip
2125
wget http://kitti.is.tue.mpg.de/kitti/raw_data/2011_09_26_calib.zip
26+
27+
// 使用下面下载
28+
https://s3.eu-central-1.amazonaws.com/avg-kitti/raw_data/2011_09_26_calib.zip
29+
https://s3.eu-central-1.amazonaws.com/avg-kitti/raw_data/2011_09_26_drive_0005/2011_09_26_drive_0005_sync.zip
2230
```
2331

2432

@@ -27,7 +35,7 @@ wget http://kitti.is.tue.mpg.de/kitti/raw_data/2011_09_26_calib.zip
2735

2836
### Start
2937

30-
#### PLEASE make sure you load the files, `src/ego_velo.txt` and `src/ego_yaw.txt` in `src/imm_ukf_jpda.cpp` l68, l69
38+
#### ~~PLEASE make sure you load the files, `src/ego_velo.txt` and `src/ego_yaw.txt` in `src/imm_ukf_jpda.cpp` l68, l69~~
3139

3240
##### Terminal 1
3341
```

‎object_tracking/src/cluster/main.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include <message_filters/time_synchronizer.h>
3636
#include <message_filters/sync_policies/approximate_time.h>
3737

38-
#include <object_tracking/trackbox.h>
38+
#include <object_tracking/trackbox.h> // 没有这个文件?
3939

4040
#include "component_clustering.h"
4141
#include "box_fitting.h"

‎object_tracking/src/groundremove/ground_removal.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ void outlierFilter(array<array<Cell, numBin>, numChannel>& polarData){
164164
}
165165
}
166166

167-
// 主函数 main.cpp会调用此函数
167+
// 主函数 src/groundremove/main.cpp会调用此函数
168168
void groundRemove(PointCloud<pcl::PointXYZ>::Ptr cloud,
169169
PointCloud<pcl::PointXYZ>::Ptr elevatedCloud,
170170
PointCloud<pcl::PointXYZ>::Ptr groundCloud){

0 commit comments

Comments
 (0)