Borrar filtros
Borrar filtros

How to improve Depth map Accuracy generated from Stereo Images?

25 visualizaciones (últimos 30 días)
JAI PRAKASH
JAI PRAKASH el 8 de Jul. de 2018
Respondida: Sukhendu el 3 de Sept. de 2024 a las 4:13
Hey
How can I improve the Depth Map Quality??
I am following Depth Estimation From Stereo Video Documentation.
Below is my two L&R images.
And, Below is what I achieved from
points3D(:, :, 3)
Below, is Ideal Depth Map
%%This is my entire code :)
clc
clear all
close all
load('stereoParams.mat')
frameLeft = imread('Left.png');
frameRight = imread('Right.png');
[frameLeftRect, frameRightRect] = rectifyStereoImages(frameLeft, frameRight, stereoParams);
frameLeftGray = rgb2gray(frameLeftRect);
frameRightGray = rgb2gray(frameRightRect);
disparityMap = disparity(frameLeftGray, frameRightGray, 'BlockSize', 15,'DisparityRange', [0 64]);
disparityMap = medfilt2(disparityMap);
points3D = reconstructScene(disparityMap, stereoParams);
Z = points3D(:, :, 3)./ 1000;
imtool(Z, [0, 100]);

Respuestas (1)

Sukhendu
Sukhendu el 3 de Sept. de 2024 a las 4:13
What is the level of reprojection error in stereo calibration ?
What is the dataset (details, samples) used to compute stereo calibration pararmeters, on your street view (assuming you have not used, matlab default) ?

Categorías

Más información sobre Point Cloud Processing en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by