Skip to content
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

Efficiency improvements and customizable occupancy 2D map projection. #9

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Jun 16, 2014

  1. Efficiency improvements and customizable occupancy 2D map projection.

    + Efficiency improvements:
    | avoid transforming clouds already in map frame (added additional
    parameter to specify sensor frame_id for calculating sensor pose)
    | create occupancy cloud directly as ros message instead of pcl cloud
    (avoids conversion)
    
    + Projection of nav_msgs::OccupancyGrid with customizable height and
    initialization as free or unknown.
    
    + Increased tf listener buffer to 30 sec.
    carlosmccosta committed Jun 16, 2014
    Configuration menu
    Copy the full SHA
    29d32c1 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2014

  1. Improved efficiency of pointcloud integration and better parametrization

    of sensor frame id.
    
    - Line 310 of OctomapServer.cpp was doing an unnecessary internal copy
    (pc_nonground = pc), that can be avoided by using shared pointers.
    - Improved assembly of pointcloud from octree by using vector reserve
    instead of resize.
    - Improved parametrization of sensor frame id. This way the input cloud
    can be sent in any frame id (map, sensor, other), and the parameter
    sensor_frame_id can be used to specify which is the sensor frame to
    compute the origin for the raytracing algorithms (used to integrate the
    pointcloud into the octree).
    carlosmccosta committed Jun 18, 2014
    Configuration menu
    Copy the full SHA
    cfe8293 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2014

  1. Configuration menu
    Copy the full SHA
    dbb4055 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2015

  1. Added option to load the initial OctoMap from nav_msgs/OccupancyGrid msg

    and regulate how often the 2D projection map is published.
    carlosmccosta committed Feb 18, 2015
    Configuration menu
    Copy the full SHA
    03f1c1c View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2015

  1. Configuration menu
    Copy the full SHA
    87d6004 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2015

  1. Configuration menu
    Copy the full SHA
    e102f8b View commit details
    Browse the repository at this point in the history