aeolusguan / NMRF

[CVPR 2024] Neural Markov Random Field for Stereo Matching
MIT License
101 stars 5 forks source link

Is the network 'fixed' by dataset? #2

Closed zhongqiu1245 closed 5 months ago

zhongqiu1245 commented 5 months ago

Hello, thank you for your amazing job! I have a question about your work. Is the network 'fixed' by dataset? I mean if I use kitti_pth to my own dataset(the params of cameras are different with kitti cameras totally), can I get the right depth? Thank you!

aeolusguan commented 5 months ago

This network only predicts the disparity of between left & right views. Afterwards, you can compute the depth using the well-known formula based on the disparity and your camera parameters.

zhongqiu1245 commented 5 months ago

@aeolusguan thank you for your reply! I mean the baseline of my setero camera is totally different with kitti, can I get the correct disparity by kitti_pth? And according your answear, why do we distinguish between kitti_pth and other_pth, can't we just use one pth to detect all?

aeolusguan commented 5 months ago
zhongqiu1245 commented 5 months ago

@aeolusguan Thank you!