How to calculate disparity image for Left to Right from Right to Left andvice versa?
In account of reducing the resource usage. i need to derive the Left to Right aggregated cost from Right to Left aggregated cost for consistency check. Any possibility for that?.
If you have a DSI, every comparison you need to do R-L you already did for L-R.
could you elaborate further?
DSI = Disparity Space Image (HxWxD). This is the volume you aggregate over for a smoothed cost estimate. This is also the volume you index over for WTA (winner-take-all) disparity selection. After you index for WTA L-R, just change your indices to be appropriate for WTA R-L. Then compare you L-R and R-L disparity images to drop values that disagree. Remember to offset your R index by -d.
Do you have a DSI? How are you computing your L-R disparity image?