Skip to content

Binpicking tool including vision, planning and robot control

Notifications You must be signed in to change notification settings

xinyiz0931/bin-picking-robot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bpbot

Bin picking tools including vision, grasp planning and robot control

$ git clone https://github.com/xinyiz0931/bin-picking-robot.git
$ cd bin-picking-robot
$ pip install -e .

Use bin picking functions by

>>> import bpbot

e.g. executing files in examples

$ python example/example_test_graspability.py

A Topological Solution of Entanglement for Complex-shaped Parts in Robotic Bin-picking

Xinyi Zhang, Keisuke Koyama, Yukiyasu Domae, Weiwei Wan and Kensuke Harada
Osaka University
IEEE International Conference on Automation Science and Engineering (CASE 2021)

arXiv / Video

Overview

This paper addresses the problm of picking up only one object at a time avoiding any entanglement in bin-picking. To cope with a difficult case where the complex-shaped objects are heavily entangled together, we propose a topology-based method that can generate non-tangle grasp positions on a single depth image. The core technique is the entanglement map, which is a feature map to measure the entanglement possibilities obtained from the input image. We use an entanglement map to select probable regions containing graspable objects. The optimum grasping pose is detected from the selected regions considering the collision between robot hand and objects. Experimental results show that our analytic method provides a more comprehensive and intuitive observation of the entanglement and exceeds previous learning-based work in success rates. Especially, our topology-based method does not rely on any object models or time-consuming training process, so that it can be easily adapted to more complex bin-picking scenes.

This repository provide the code of grasp planning by generating the entanglement map for depth images.

Usage

  1. Run this python script to visualize the results
$ git clone https://github.com/xinyiz0931/bin-picking-robot.git
$ cd bin-picking-robot
$ pip install -e .
$ python example/example_tangle_pick.py
  1. Before execution, there are four important parameters must be tuned, you can revise them in ./config/config.yaml. Default values are pretty good, you can tune them based on your needs.
  • (len_thld, dist_thld, sliding_size, sliding_stride, c_size) = t_params
    • len_thld: the minimum length of detected edge segments
    • dist_thld: the minimum distance between detected edge segments
    • sliding_size: (important) size of sliding window
    • sliding_stride: (important) stride between two windows
    • c_size: size of input cropped image when computing entanglement map
  1. If you want to revise the source code, please find them in
  • ./bpbot/binpicking.py -> detect_nontangle_grasp()
  • ./bpbot/tangle_solution/entanglement_map.py, topo_coor.py

About

Binpicking tool including vision, planning and robot control

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published