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

docs: Enhance Manipulation section with detailed pipeline and placing… #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion docs/home/2024/Manipulation/index.md
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
# Manipulation
# Manipulation

Manipulation is one of the most essential and challenging aspects of robotics, enabling robots to physically interact with their environment to perform meaningful tasks.

## Our Innovative Pipeline
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## Our Innovative Pipeline
## Pipeline


We have developed a pipeline that empowers a 6-degree-of-freedom robotic arm and gripper to execute object manipulation by seamlessly integrating:

- **Image Processing**
- **Perception**
- **Motion Planning Components**

## Object-Picking Phase

- **Data Fusion**: Enhance 2D object detection data with 3D point cloud information using the **Point Cloud Library (PCL)**.
- **Plane Extraction**: Utilize **RANSAC algorithms** to extract planes from the point cloud.
- **Object Segmentation**: Segment clusters corresponding to detected objects.
- **Grasp Planning**: Process detections with the **Grasp Pose Detection (GPD) library**.
- **Trajectory Generation**: Use **MoveIt!** to generate collision-free trajectories for grasping.

## Motion Planning

- **Primitive Movements**: Employ primitive movements for pick-and-place operations.
- **Benefits**:
- Faster planning.
- Maintains the end effector's orientation.
- Ideal for tasks like serving breakfast that don't require collision avoidance.
- **Collision Avoidance**: When necessary, alternative planning methods are used to navigate around obstacles.

## Placing Algorithm

- **Surface Isolation**: Isolate the table surface using **RANSAC**.
- **Heat Map Creation**: Generate a heat map of available space based on a Gaussian distribution.
- **Optimal Placement**: Select the region with the maximum accessible space as the placing pose.

<!-- Manipulation is one of the most essential and challenging aspects of robotics, enabling robots to physically interact with their environment to perform meaningful tasks. Our innovative pipeline empowers a 6-degree-of-freedom robotic arm and gripper to execute object manipulation by seamlessly integrating image processing, perception, and motion planning components. In the object-picking phase, we enhance 2D object detection data with 3D point cloud information using the Point Cloud Library (PCL) and RANSAC algorithms to extract planes and segment clusters corresponding to detected objects. The Grasp Pose Detection (GPD) library processes these detections, while MoveIt! generates collision-free trajectories for grasping. For motion planning, we utilize primitive movements for pick-and-place operations, ensuring faster planning and maintaining the end effector's orientation—perfect for tasks like serving breakfast that don't require collision avoidance. When collision avoidance is necessary, we employ alternative planning methods. The placing algorithm isolates the table surface using RANSAC, creates a heat map of available space based on a Gaussian distribution, and selects the region with the maximum accessible space as the placing pose. -->
19 changes: 18 additions & 1 deletion docs/home/2024/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,24 @@ These are the major achievements divided by area:
- Nadota (@Ale-Coeto)

## [Manipulation](Manipulation/index.md)
- Nadota (@deivideich, @emilianh)
## Placing Algorithm with Gaussian Distribution

To optimally place objects, we:

1. **Isolate the Table Surface**:
- Use **RANSAC** to extract the table plane from 3D point cloud data.

2. **Generate a Heat Map**:
- Apply a **Gaussian distribution** over the surface to create a heat map highlighting open spaces.

3. **Select Optimal Placement**:
- Choose the area with the highest value on the heat map as the placing pose.

4. **Plan Collision-Free Trajectory**:
- Use **MoveIt!** to plan a safe path to the placing pose.

This concise approach ensures efficient space utilization and safe object placement.


## [Navigation](Navigation/index.md)
- Nadota (@deivideich, @Chapa-1810)