Skip to content

Integrates the vision, touch, and common-sense information of foundational models, customized to the agent's perceptual needs.

License

Notifications You must be signed in to change notification settings

ai4ce/FusionSense

Repository files navigation

More Documentation Ongoing for VLM Reasoning and Real World Experiments. This README is Still Being Actively Updated

πŸ†• [2024-11-15] Installation for VLM Reasoning & Active Touch Selection Updated.

πŸ†• [2024-10-17] Installation for Hardware Integration/3D Printing Updated.

πŸ†• [2024-10-15] Installation for Robotics Software Updated.

πŸ†• [2024-10-11] Made Public

FusionSense

[Page] | [Paper] | [Video]

This is the official implementation of FusionSense: Bridging Common Sense, Vision, and Touch for Robust Sparse-View Reconstruction

Irving Fang, Kairui Shi, Xujin He, Siqi Tan, Yifan Wang, Hanwen Zhao, Hung-Jui Huang, Wenzhen Yuan, Chen Feng, Jing Zhang

FusionSense is a novel 3D reconstruction framework that enables robots to fuse priors from foundation models with highly sparse observations from vision and tactile sensors. It enables visually and geometrically accurate scene and object reconstruction, even for conventionally challenging objects.

FusionSense Snapshot

Preparation

This repo has been tested on Ubuntu 20.04 and 22.04. The real-world experiment is conducted on 22.04 as ROS2 Humble requires it.

Step 0: Install Everything Robotics

We used a depth camera mounted on a robot arm powered by ROS2 to acquire pictures with accurate pose information. We also used a tactile sensor for Active Touch Selection.

If you have no need for this part, feel free to jump into Step 1 for the 3D Gaussian pipeline of Robust Global Shape Representation and Local Geometric Optimization.

Note: ROS2 doesn't play well with Conda in general. See official doc and this issue in the ROS2 repo. As a result, in this project, ROS2 uses the minimal system Python environment and have limited direct interaction with the Python perception modules.

Step 1: Install 3D Gaussian Dependencies

We will need two independent virtual environments due to some compatibility issue.

Step 1.1: DN-Splatter and Metric3D

Please see DN-Splatter and Metric3D Installation

Step 1.2: Grounded-SAM-2

Please see Grounded-SAM-2 Installation

Step 2: Install VLM Dependencies for Active Touch Selection

Please see Active Touch Selection Installation

Usage

1. Robust Global Shape Representation

a. Prepare Data

You can see here for an example dataset structure.

Note that a lot of the folders are generated during the pipeline. The data needed to start this projects are: images, realsense_depth, tactile, gelsight_transform.json and transforms.json.

The ROS2 packages I shared can be used to acquire them. Or you can manually format your dataset this way.

The project assume that all the folders in the HuggingFace repo are put under FusionSense/datasets/.

b. Extract Mask

Switch your conda env first

conda activate G-SAM-2

Inside the submodule of our Grounded-SAM2

cd Grounded-SAM2-for-masking

Run the script to extract masks by setting your dataset path and prompt text. The prompt text ends with an '.' at the end.

eg. --path /home/irving/FusionSense/dataset/transparent_bunny --text 'transparent bunny statue.' Β 

python grounded_sam2_hf_model_imgs_MaskExtract.py Β --path {ABSOLUTE_PATH} --text {TEXT_PROMPT_FOR_TARGET_OBJ}

You will see mask_imgs in the newly created /masks folder, and you can check /annotated folder to see the results more directly.

c. Select Frames

set train.txt with images id. You can pick images that have better masking for better final result. Although in our experiment we didn't cherrypick which images to use except that we want images to be relatively evenly spread out.

d. Run Pipeline

This pipeline is mostly run in Nerfstudio. You can change configs at configs/config.py First go back to our main conda environment and main folder

conda activate fusionsense
cd ..

Then we run

python scripts/train.py --data_name {DATASET_NAME} --model_name {MODEL_NAME} --configs {CONFIG_PATH} --verbose {True, False} --vram_size {"large", "small"}
  • data_name: Name of the dataset folder
  • model_name: Name of the model you train. It will impact the output and eval folder name. You can technically name this whatever you want.`
  • configs: Path to the Nerfstudio config file
  • verbose: False: Only show important logs. True: Show all logs. Default=False
  • vram_size: "large" or "small". Decides the foundation models variants used in the pipeline. Default="large"

An example using the provided data would be:

python scripts/train.py --data_name transparent_bunny --model_name 9view --configs configs/config.py --vram_size small

Render outputs

For render jpeg or mp4 outputs using nerfstudio, we recommend install ffmpeg in conda environment:

conda install -c conda-forge x264=='1!161.3030' ffmpeg=4.3.2

To render outputs of pretrained models:

python scripts/render_video.py camera-path --load_config your-model-config --camera_path_filename camera_path.json --rendered_output_names rgb depth normal

more details in nerfstudio ns-render.

Dataset Format

datasets/
Β  Β  ds_name/
Β  Β  β”‚
Β  Β  β”œβ”€β”€ transforms.json # need for training
Β  Β  β”‚
Β  Β  β”œβ”€β”€ train.txt
Β  Β  β”‚
Β  Β  β”œβ”€β”€ images/
Β  Β  β”‚ Β  β”œβ”€β”€ rgb_1.png
Β  Β  β”‚ Β  └── rgb_2.png
Β  Β  β”‚ 
Β  Β  β”œβ”€β”€ realsense_depth/
Β  Β  β”‚ Β  β”œβ”€β”€ depth_1.png
Β  Β  β”‚ Β  └── depth_2.png
Β  Β  β”‚
Β  Β  │── tactile/
Β  Β  β”‚ Β  β”œβ”€β”€ image
Β  Β  β”‚ Β  β”œβ”€β”€ mask
Β  Β  β”‚ Β  β”œβ”€β”€ normal
Β  Β  β”‚ Β  └── patch
Β  Β  β”‚
Β  Β  β”œβ”€β”€ model.stl Β  Β  Β  # need for evaluation
Β  Β  β”‚
Β  Β  β”œβ”€β”€ normals_from_pretrain/ # generated
Β  Β  β”‚ Β  β”œβ”€β”€ rgb_1.png
Β  Β  β”‚ Β  └── rgb_2.png
Β  Β  β”‚
Β  Β  β”œβ”€β”€ foreground_pcd.ply
Β  Β  β”‚
Β  Β  └── merged_pcd.ply

Outputs Format

outputs/
Β  Β  ds_name/
Β  Β  β”‚
Β  Β  β”œβ”€β”€ MESH/
Β  Β  β”‚ Β  └── mesh.ply
Β  Β  β”‚
Β  Β  β”œβ”€β”€ nerfstudio_models/
Β  Β  β”‚ Β  └── 30000.ckpt
Β  Β  β”‚ Β  
Β  Β  β”œβ”€β”€ cluster_centers.npy
Β  Β  β”‚
Β  Β  β”œβ”€β”€ config.yml
Β  Β  β”‚
Β  Β  β”œβ”€β”€ high_grad_pts.pcd
Β  Β  β”‚
Β  Β  β”œβ”€β”€ high_grad_pts_ascii.pcd
Β  Β  β”‚
Β  Β  └── dataparser_transforms.json

eval/
Β  Β  ds_name/ *evaluation results files*