Code Monkey home page Code Monkey logo

object_builders_lib's Introduction

object_builders_lib

 Object Orientation Corrected Bounding Box Fit for Point Cloud Clusters.

TODO list

  • Apollo's Min-box Object Builder
  • TAS: An Orientation Corrected Bounding Box Fit Based on the Convex Hull under Real Time Constraints, similar to Apollo, IV 2018.
  • M. Himmelsbach's Fit Oriented Box by a RANSAC algorithm to fit the dominant line in the xy-projection of the segment’s points; the other axis is then taken to be perpendicular to the dominant line, IV 2012.
    @inproceedings{himmelsbach2012tracking,
      title={Tracking and classification of arbitrary objects with bottom-up/top-down detection},
      author={Himmelsbach, Michael and Wuensche, H-J},
      booktitle={Intelligent Vehicles Symposium (IV), 2012 IEEE},
      pages={577--582},
      year={2012},
      organization={IEEE}
    }

How to use

  1. git clone as a ROS package, with common_lib as dependency.
  2. find_package for this object_builders_lib local package.
    find_package(catkin REQUIRED COMPONENTS
        # ROS core
        roscpp
        # ROS messages
        #std_msgs
        #sensor_msgs
        # ROS PCL
        #pcl_conversions
        #pcl_ros
        # 3rd modules for ROS, like Eigen
        cmake_modules
        # local packages
        common_lib
        object_builders_lib
    )
  3. Use Point Cloud Clusters' Object Builder in your source code.
    // 1.include files
    #include "object_builders/base_object_builder.hpp"
    #include "object_builders/object_builder_manager.hpp"
    
    // 2.define object builder
    boost::shared_ptr<object_builder::BaseObjectBuilder> object_builder_;
    
    // 3.create object builder by manager
    object_builder_ = object_builder::createObjectBuilder();
    
    // 4.build 3D orientation bounding box for clustering point cloud
    std::vector<PointICloudPtr> cloud_clusters;
    std::vector<ObjectPtr> objects;
    object_builder_->build(cloud_clusters, &objects);

object_builders_lib's People

Contributors

durant35 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.