Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

MATLAB implementation of fast stereo disparity estimator.

License

Notifications You must be signed in to change notification settings

asiryan/Fast-Stereo-Disparity-Estimator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 

Repository files navigation

Fast Stereo Disparity Estimator

MATLAB implementation of fast stereo disparity estimator.

Disparity map

Try simple matlab example.

%% Input stereo pair of images
im_ol=rgb2gray(imread('images/left.png'));
im_or=rgb2gray(imread('images/right.png'));

%% Disparity
win=10;
max_dis=50;
weight=5;

tic;
im_dm = disparity_estimator(im_ol, im_or, win, max_dis, weight);
toc;

%% Result
figure(1);
imshow(im_dm);
title('disparity map');

Stereo pair of images (left & right camera) and estimated disparity map

Try it in UMapx - cross-platform .NET library for digital signal processing. Fast and optimized.

License

MIT

Releases

No releases published

Packages

No packages published

Languages