lmb-freiburg / demon

DeMoN: Depth and Motion Network
https://lmb.informatik.uni-freiburg.de/people/ummenhof/depthmotionnet/
GNU General Public License v3.0
574 stars 156 forks source link

Image Pairs #19

Closed akritisaxena closed 7 years ago

akritisaxena commented 7 years ago

The image pairs used in training don't look like the stereo pairs. Are they consecutive frames ? How are these 'unconstrained image pairs' considered for training? Also for prediction, image pairs are required in the same manner?

benjaminum commented 7 years ago

The input should be just two images showing the same scene from different viewpoints. This can be two frames from a video. We do not impose restrictions on the position or orientations of the second camera. It is actually the task of the network to also compute the relative pose of the two images.

During training we present a large number of images with known relative poses to the camera and train it to predict the pose of the second camera.

akritisaxena commented 7 years ago

Thanks @benjaminum ! This is really helpful.