NVlabs / neuralrgbd

Neural RGB→D Sensing: Per-pixel depth and its uncertainty estimation from a monocular RGB video
Other
301 stars 41 forks source link

live camera use past window src frames? #19

Closed Yvaine closed 3 years ago

Yvaine commented 3 years ago

Hi, I want to know if use live camera, the pose and frames all in past window, so when inference current frame use all past not forward? If inference past and future, it is delayed to inference current frame.

cxlcl commented 3 years ago

Hi @Yvaine ,

If I understand the question correctly, the implementation forms the local time window as (for t_win_r=2) [frame_t-2, frame_t-1, frame_t, frame_t+1, frame_t+2], where frame_t is the current frame (reference image) for which the depth estimation is performed. As a result, there is a two-frame delay in this case.

To avoid such delay, you can set frame_t+2 (the latest frame) as the reference image.

Yvaine commented 3 years ago

Thank you. I understand.