0

Normally in depth sensing for 3D measurement in imaging, people use stereo approach using two cameras. But I have seen some applications and they use three cameras for depth measurement. But idea of image processing algorithm is similar. I am wondering why some use three cameras instead of two. Is it because of more accuracy in depth sensing? Thanks

batuman
  • 7,066
  • 26
  • 107
  • 229

1 Answers1

2

If you study the history of a famous camera company Point Grey you will find a triclops - three stereo cameras set up horizontally and vertically in a triangular pattern that supposedly allow you to get better matching. This is because horizontally shifted cameras prefer vertical gradient and vertically shifted ones prefer horizontal gradient for matching.

Happened to be a waste of hardware since usually both directions of gradients are present in a correlation window. Another early mistake was to use color for stereo matching (looks like an attractive option but it adds more noise and variability than help). Point grey now has 'digiclops' with two cameras that are grey, not color.

If you see three cameras they are typically lined up horizontally to provide a choice for a wide and narrow baseline. A narrow one is good for close objects while the wide one would have a longer 'dead zone' (i.e. absence of stereo overlap) but distinguishes depth at longer distances.

Stereo cameras never pick up for another reason - absence of texture creates huge holes in disparity maps. Kinect happened to a winner here because it projects its own texture (though it cannot do this at sunlight).

Community
  • 1
  • 1
Vlad
  • 4,425
  • 1
  • 30
  • 39
  • Since I just started for the 3D imaging, make sense or doesn't make sense, I can't make decision, but I like your answer. I need to learn more and lets discuss more. So that other people like me, will benefit from our discussion. – batuman Mar 18 '14 at 07:54
  • A good start would be to learn about correlation stereo, validating matches, calculating 3D from disparity, learning more about image rectification, but most important playing with stereo images http://upload.wikimedia.org/wikipedia/commons/b/b6/Art_Institute_of_Chicago_Lion_Statue_%28parallel_stereo_pair%29.jpg – Vlad Mar 18 '14 at 08:49