Avada11 nielsr HF Staff commited on
Commit
7e95a3e
·
verified ·
1 Parent(s): 48f8408

Improve model card: Add pipeline tag, abstract, and sample usage (#1)

Browse files

- Improve model card: Add pipeline tag, abstract, and sample usage (06f4e038e09f7f4ed88c2be35c5909d89fc06ea2)


Co-authored-by: Niels Rogge <[email protected]>

Files changed (1) hide show
  1. README.md +28 -3
README.md CHANGED
@@ -1,9 +1,34 @@
1
  ---
2
  license: cc-by-nc-4.0
 
3
  ---
4
 
5
- This repository contains the camera depth model of the paper Manipulation as in Simulation: Enabling Accurate Geometry Perception in Robots.
6
 
7
- Model inference guide: https://github.com/ByteDance-Seed/manip-as-in-sim-suite/tree/main/cdm
8
 
9
- Project page: https://manipulation-as-in-simulation.github.io
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ pipeline_tag: depth-estimation
4
  ---
5
 
6
+ # Manipulation as in Simulation: Enabling Accurate Geometry Perception in Robots
7
 
8
+ This repository contains the Camera Depth Models (CDMs) presented in the paper [Manipulation as in Simulation: Enabling Accurate Geometry Perception in Robots](https://huggingface.co/papers/2509.02530).
9
 
10
+ CDMs are proposed as simple plugins for daily-use depth cameras. They take RGB images and raw depth signals as input and output denoised, accurate metric depth. This approach addresses challenges in using depth cameras for robotic manipulation, such as limited accuracy and noise susceptibility, effectively bridging the sim-to-real gap for manipulation tasks.
11
+
12
+ ## Abstract
13
+ Modern robotic manipulation primarily relies on visual observations in a 2D color space for skill learning but suffers from poor generalization. In contrast, humans, living in a 3D world, depend more on physical properties-such as distance, size, and shape-than on texture when interacting with objects. Since such 3D geometric information can be acquired from widely available depth cameras, it appears feasible to endow robots with similar perceptual capabilities. Our pilot study found that using depth cameras for manipulation is challenging, primarily due to their limited accuracy and susceptibility to various types of noise. In this work, we propose Camera Depth Models (CDMs) as a simple plugin on daily-use depth cameras, which take RGB images and raw depth signals as input and output denoised, accurate metric depth. To achieve this, we develop a neural data engine that generates high-quality paired data from simulation by modeling a depth camera's noise pattern. Our results show that CDMs achieve nearly simulation-level accuracy in depth prediction, effectively bridging the sim-to-real gap for manipulation tasks. Notably, our experiments demonstrate, for the first time, that a policy trained on raw simulated depth, without the need for adding noise or real-world fine-tuning, generalizes seamlessly to real-world robots on two challenging long-horizon tasks involving articulated, reflective, and slender objects, with little to no performance degradation. We hope our findings will inspire future research in utilizing simulation data and 3D information in general robot policies.
14
+
15
+ ## Project Page
16
+ For more details and resources, visit the project page: [https://manipulation-as-in-simulation.github.io](https://manipulation-as-in-simulation.github.io/)
17
+
18
+ ## Code
19
+ The full code, additional details, and further instructions can be found in the official GitHub repository: [https://github.com/ByteDance-Seed/manip-as-in-sim-suite](https://github.com/ByteDance-Seed/manip-as-in-sim-suite)
20
+
21
+ For specific model inference instructions, refer to the [CDM inference guide on GitHub](https://github.com/ByteDance-Seed/manip-as-in-sim-suite/tree/main/cdm).
22
+
23
+ ## Sample Usage
24
+ To run depth inference on RGB-D camera data using CDM, follow this example from the repository:
25
+
26
+ ```bash
27
+ cd cdm
28
+ python infer.py \
29
+ --encoder vitl \
30
+ --model-path /path/to/model.pth \
31
+ --rgb-image /path/to/rgb.jpg \
32
+ --depth-image /path/to/depth.png \
33
+ --output result.png
34
+ ```