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

RealSense Support #14

Open
hhcxx2006 opened this issue Dec 8, 2023 · 15 comments
Open

RealSense Support #14

hhcxx2006 opened this issue Dec 8, 2023 · 15 comments
Labels
enhancement New feature or request question Further information is requested

Comments

@hhcxx2006
Copy link

Hi, I wonder how to use my own RealSense data in this project. I use your realsense dataloader in datasets/gradslam_datasets/realsense.py. There are total 1777 frames, and each frame resolution is 1280*720. The config file is like below. And I initialize the camera pose with P = torch.tensor([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]]).float(), the num is equal the number of frames

image image After I execute `python3 scripts/splatam.py configs/realsense/splatam.py`, the speed is super slow than Replica dataset. And after a while, it shows an error that cuda is out of memory. However, I use Tesla V100 which has 32G memory. Is the memory enough? And I want it to execute faster like Replica dataset. What can I do? Thank you! Here is the configs/realsense/splatam.py file [splatam.zip](https://github.com/spla-tam/SplaTAM/files/13611133/splatam.zip)
@hhcxx2006
Copy link
Author

hhcxx2006 commented Dec 8, 2023

And even I changed the picture resolution from 1280 * 720 to 640 * 360. The error is also occured. CUDA is out of memory.
image

@hhcxx2006
Copy link
Author

What configs should I use for RealSense D435i?
Could you please provide a config file?

@Nik-V9
Copy link
Contributor

Nik-V9 commented Dec 8, 2023

Hi, the error could be due to the following reasons:

  1. Could you instead use torch.eye(4).float() for the dummy pose? The GradSLAM dataloader converts all the poses relative to the first frame, where the first frame is identity. We use that identity pose to initialize our first frame pose. This might be causing potential bugs in that step.

  2. Is the depth scaling & intrinsics correct?

  3. If it's a Tracking Failure:

How many iterations of tracking and mapping are you using? Also, what's the frame rate of the capture, and how much is the sensor moving between each frame?

In the current version, SplaTAM's number of tracking iterations depends on the camera motion between the frames.

An easy way to debug this would be to set the following config to True and see if your tracking is converging to the correct pose:

visualize_tracking_loss=False, # Visualize Tracking Diff Images

You can also set the num_frames to a shorter number (10-50) to see if things are working.

num_frames=num_frames,

@hhcxx2006
Copy link
Author

Hi, the depth scaling & intrinsics are correct, I am sure. The intrinsics in above picture is not the newest.

I use 40 iterations of tracking and 60 iterations of mapping, just the same as the config file of Replica.

The frame rate is 10 FPS, maybe the frame rate is too low. I will use 30 FPS to have another test. Thank you!

By the way, I wonder if there is a way to visualize the whole process of reconstruction? The words in the terminal are not quite intuitive. Can I visualize the whole process for RealSense data?

@Nik-V9
Copy link
Contributor

Nik-V9 commented Dec 8, 2023

I recommend not using the Replica Config file as your base config. The iPhone config file is more reasonable in terms of learning rate and other parameters.

Unfortunately, we don't currently have a way to look at the reconstruction while SplaTAM is running. That's in the work. We generally use the visualize_tracking_loss config to debug out the tracking. Once tracking works, the rest of the pipeline typically works seamlessly.

@hhcxx2006
Copy link
Author

Okay!
Thank you for your help! I get it. I will have another try. Thank you!

@Nik-V9 Nik-V9 added the question Further information is requested label Dec 9, 2023
@hhcxx2006
Copy link
Author

Hi,I have collected data many times. During the collection process, I move the camera slowly and walk slowly. I use 30 fps to collect the data, but finally the code still shows cuda is out of memory. The 32G memory is used up. What should I do? What's wrong with this?The resolution is 1280 * 720. If num_frames set to a shorter number (10-50), it can run sucessfully, but I need to reconstruct the whole scene. I need the whole data. Thank you!

@hhcxx2006
Copy link
Author

If I provide external camera pose and do not want to use your tracking method, what should I do?

@hhcxx2006
Copy link
Author

image This is tracking loss visualization. Is it correct? How to judge the loss is correct?How to debug tracking?

@libaiwanovo
Copy link

Thank you for providing the code and for your question. I am using a Realsense D435i camera. Could you please explain how to create a dataset? Also, what modifications are needed for the author's code? I am encountering the following error.Looking forward to your reply.
error

@ALeHitachi
Copy link

Also interested in this! Starting to try with Realsense D455

@Nik-V9 Nik-V9 added the enhancement New feature or request label Dec 26, 2023
@Nik-V9 Nik-V9 changed the title How to use RealSense data RealSense Support Dec 26, 2023
@Nik-V9
Copy link
Contributor

Nik-V9 commented Dec 26, 2023

Hi @hhcxx2006, it would be great if you could share the data so that we can take a look (if things aren't still working).

Thanks for your interest in a RealSense demo. We will potentially consider this for V2.

@Zhirui86
Copy link

I'm using the config file for replica to test datasets collected by realsense d435.It turns out that the mapping quality is not good enough,especially the edges and corners cannot be reconstructed.(The intrinsics and depth scale are set accurately).Can I get some suggestions on selecting configuration parameters?

@jeezrick
Copy link

jeezrick commented Feb 6, 2024

If I provide external camera pose and do not want to use your tracking method, what should I do?

Just set use_gt_pose=True, as `configs/replica/splatam.py':

    tracking=dict(
        use_gt_poses=False, # Use GT Poses for Tracking
        forward_prop=True, # Forward Propagate Poses
        num_iters=tracking_iters,
        use_sil_for_loss=True,
        sil_thres=0.99,
        use_l1=True,
        ignore_outlier_depth_loss=False,
        loss_weights=dict(
            im=0.5,
            depth=1.0,
        ),
        lrs=dict(
            means3D=0.0,
            rgb_colors=0.0,
            unnorm_rotations=0.0,
            logit_opacities=0.0,
            log_scales=0.0,
            cam_unnorm_rots=0.0004,
            cam_trans=0.002,
        ),
    ),

But in my experience, even if I use gt_poses, the mapping result isn't good enough. I come up with some reasons for this :

  • Tracking trajectory isn't complicated enough. I mean maybe good mapping result need up and down trajectory like replica dataset.
  • Gaussians prune method. Maybe the authors finetuned those methods to accommodate those datasets they evaluate at.
  • As @Nik-V9 mentioned, learning rate issue.

@Carloslius
Copy link

Hello, have you solved this problem? Even if I set the parameters very low, my computer will still run out of GPU memory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request question Further information is requested
Projects
None yet
Development

No branches or pull requests

7 participants