Generating middle image using stereo image(two images)
Hello,
I study stereo vision.
How to generate middle position image using depth map?
(What function should I use?)
sincerely,


There's no single function solution. The final result depends on various conditions. I would do the folowing:
Compute disparity map with left and right images (with using cv::StereoSGBM). Note that disparity relates to the left image.
(Optional) postprocess disparity map. Fill gaps etc.
Recompute disparity map to the middle view (DispM). First init middle disparity with negative (invalid values). Then reproject left disparity to middle:
d = DispL[x,y] / 2 # divide by two because disparity for middle view less then for right view
if x-d > 0 and DispM[x-d,y] < d: DispM[x-d,y] = d
Possible postprocess DispM to fill gaps
Remap left image to the middle view with cv::remap. The tables for remapping calculated with folowing:
mapy[x,y] = y
mapx[x,y] = x - DispM[x,y]
Asked: 2016-07-15 02:00:20 -0600
Seen: 1,060 times
Last updated: Jul 15 '16
this is pretty vague.
can you explain, what you mean by "middle image" ?
middle positon image
If left image posion is horizontal 10 cm and right posion is horizontal 16 cm, middle image position is horizontal 13cm.