Giter VIP home page Giter VIP logo

selective_search_3d's Introduction

3D Selective Search

This code produces object candidates (in bounding boxes) from RGBD frames.

If you use this software, please cite the following paper:

Asako Kanezaki and Tatsuya Harada. 3D Selective Search for Obtaining Object Candidates. IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), 2015.
(pdf)

Requirement

ROS indigo/jade
http://wiki.ros.org/

Usage

1. Launch Kinect.

For example,
$ roslaunch freenect_launch freenect.launch
In this case, you will get point cloud in rostopic /camera/depth_registered/points and color images in rostopic /camera/rgb/image_color.

2. Run 3D selective search.

$ rosrun selective_search_3d selective_search_3d -v 0.02 -d 1.0 points:=/camera/depth_registered/points
In this case, you will get bounding boxes of object candidates within depth range = 1.0m. The voxel resolution is set to 0.02m.

3. Show bounding boxes. (2D)

$ rosrun selective_search_3d show_bbox -n 5 image:=/camera/rgb/image_color
or
$ python show_bbox.py -n 5 image_topic:=/camera/rgb/image_color
In this case, five bounding boxes at maximum are shown.

4. Print bounding boxes. (3D)

$ rosrun selective_search_3d print_bbox3D -n 5
or
$ python print_bbox3D.py -n 5
In this case, five bounding boxes at maximum are printed.

5. Run Fast R-CNN online.

Please install Fast R-CNN according to https://github.com/rbgirshick/fast-rcnn

Then, specify the path of the directory that you cloned Fast R-CNN into fast_rcnn_path in do_fast-rcnn.py.
$ python do_fast-rcnn.py --net caffenet --conf 0.7 image_topic:=/camera/rgb/image_color
Please change the threshold of confidence (0.7) on demand.

6. Run 3D selective search offline.

$ rosrun selective_search_3d selective_search_3d_offline -v 0.02 -p cloud.pcd -o bbox.txt
In this case, you will get bounding boxes of object candidates written into bbox.txt. The voxel resolution is set to 0.02m.

Licence

BSD

selective_search_3d's People

Contributors

kanezaki 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.