facebookresearch / TemporallyConsistentDepth

Code for our CVPR 2023 paper on online, temporally consistent depth estimation.
Other
86 stars 3 forks source link

MPI Sintel: Mono vs Stereo #4

Closed TouqeerAhmad closed 1 year ago

TouqeerAhmad commented 1 year ago

I was curious about running the TCOD on mono depth from MPI Sintel, as results for both mono/stereo are reported in the paper. More specifically, I was expecting to run the trained temporal/spatial fusion model providing the ground truth depth (or predicted depth via DPT), camera parameters, and RGB image from the monocular partition: http://sintel.is.tue.mpg.de/depth

I do not see any option in the code to run mono part of MPI Sintel? Would that fall under running with the custom dataset?

Instead, mpisintel option runs RAFT Stereo to generate depth and then runs the proposed network. Specifically works on this dataset: http://sintel.is.tue.mpg.de/stereo

Is it safe to assume mono option is unavailable or is there a plan to add that?

nkhan2 commented 1 year ago

Hi Touqeer. Yes, I would suggest implementing a custom dataset for running monocular tests on MPI Sintel. I believe you should be able to borrow large parts of the code from the monocular ScanNet dataloader and add the pose loading for MPI Sintel from the stereo loader.

TouqeerAhmad commented 1 year ago

Thanks, I shall give it a try.