koide3 / hdl_people_tracking

Real-time people tracking using a 3D LIDAR
BSD 2-Clause "Simplified" License
280 stars 93 forks source link

work flow question. #2

Open agn-7 opened 6 years ago

agn-7 commented 6 years ago

Is flow works of this package (hdl_people_tracking) dependent to the hdl_localization?
In other words, can hdl_people_tracking run without depending on hdl_localization and detect pedestrians?

koide3 commented 5 years ago

The standard workflow of this package requires localization. But, in case the sensor is fixed, you can run it by feeding dummy static transforms to the nodelet instead without running the localization.

agn-7 commented 5 years ago

Thanks for the reply. Do you have a compatible bagfile with your package that has a static Velodyne?

koide3 commented 5 years ago

Here, a test bag for people tracking with a static velodyne. https://drive.google.com/open?id=1oPj6xJ0VpvGc_u31EQuGAqiVMnbA5Kar

Try to launch "hdl_people_tracking_static.launch" with this bag. The first frame is treated as the background cloud.

rosparam set use_sim_time true
roslaunch hdl_people_tracking hdl_people_tracking_static.launch
rosbag play --clock hdl_500.bag
agn-7 commented 5 years ago

In the readme file in workflow image in Related work section I see the following procedures:

workflow

hdl_graph_slam --> hdl_localization --> hdl_people_tracking


But I could not find hdl_graph_slam name in package.xml ro CMakeList.txt files in hdl_people_tracking and hdl_localization packages.

So what is the hdl_graph_slam role in this package?

koide3 commented 5 years ago

This package requires a map cloud ("hdl_localization/data/map.pcd" in the example) to perform people tracking with a moving sensor, and in our workflow, we use hdl_graph_slam to generate the map cloud. We didn't add it to package.xml so that you can use any other SLAM algorithms instead of it.

agn-7 commented 5 years ago

So is mean that this tracking pedestrian project works only with hdl_400.bag with its saved "hdl_localization/data/map.pcd" map? and if we want to test it on other environments we need to using the hdl_graph_slam or any other SLAM algorithm?

koide3 commented 5 years ago

Yes, you need to create an environmental map with any SLAM algorithm before running this people tracking. In case you want to run it in an unmapped environment, you need to replace the background subtraction code (The package first perfoms background subtraction, and then do clustering to detect human candidates). I saw a guy modified the code so that it filters out ceiling and floor points with a pass through filter, and I think it would be helpful for you. https://github.com/tzven0/hdl_people_tracking/commit/874cd5e66f8bb612d191185f5730e1ed7c256832

DeepDuke commented 4 years ago

The link for hdl_500.bag failed. Can u give me a new link for it?