1

Can someone explain to me what Disparity Space Image is? How can it be constructed?

Nithin Jose
  • 979
  • 2
  • 12
  • 30

1 Answers1

2

First, I don't think the disparity image and disparity space image (DSI) are the same. Actually DSI is kind of matrix store the matching score of each pixels in two scanlines. More about to http://www.cse.psu.edu/~rtc12/CSE486/lecture09.pdf.

Zen
  • 21
  • 3
  • Link only answers are not considered as answers here – Krishna Mohan Aug 03 '16 at 09:15
  • As @Zen mentioned, DSI and disparity map are not the same. – Tal J. Levy Oct 18 '17 at 10:48
  • I elaborate a bit: Disparity map is explained [here](https://stackoverflow.com/questions/7337323/definition-of-a-disparity-map). On the other hand DSI is a 2D matrix (denoted as S) with S[i, j] being the matching cost between a pixel (j) in the left image and a pixel (i) on the eppilor line in the right image. The [link](http://www.cse.psu.edu/~rtc12/CSE486/lecture09.pdf) by @Zen has nice slides about it. – Tal J. Levy Oct 18 '17 at 10:57