-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
work flow question. #2
Comments
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. |
Thanks for the reply. |
Here, a test bag for people tracking with a static velodyne. 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 |
In the readme file in workflow image in Related work section I see the following procedures: 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? |
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. |
So is mean that this tracking pedestrian project works only with |
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. |
The link for hdl_500.bag failed. Can u give me a new link for it? |
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?
The text was updated successfully, but these errors were encountered: