Skip to content

hidiryuzuguzel/stereo-matching

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stereo-matching

Dense disparity estimation via local stereo matching

diagram

Overview

The code implements the local color-weighted disparity estimation algorithm and evaluates its performance on a set of stereo image pairs. The algorithm includes the following steps:

  1. Cost function calculation
  2. Cost aggregation based on:
    1. Box filtering
    2. Gaussian filtering
    3. Local color-weighted filtering
  3. Winner-takes-all (WTA) disparity estimation
  4. Detection of occlusions
  5. Computation confidence values for disparity estimates
  6. Post-filtering to tackle occlusions and bad pixels (needs map from 4. and 5.)

Performance Evaluation of the algorithm

  • Calculation of BAD quality metric given the true disparity map
  • Comparison of the performance of block matching and Gaussian smoothing for different sizes of aggregation windows
  • Comparison of local color-weighted filtering against the two others above
  • Visual assessment of the effect of occlusion filling

Results:

  • One slice of cost volume

one_slice_cost_volume

  • Left disparity estimation without aggregation

left_disp_wo_agg

  • Left disparity estimation with block aggregation

left_disp_blk_agg

  • Left disparity estimation with gaussian aggregation

left_disp_gaussian_agg

  • Comparison of block and gaussian filtering

cmp_blk_gauss_filtering

  • Left and right disparity estimation with gaussian aggregation

cmp_lr_disp_map

  • Left occlusion map

left_occlusion_map

  • Left confidence map

left_confidence_map

  • Left compansated (filled) occlusion map

left_occlusion_map_filled

  • Comparison of color-weighted aggregation and the others

cmp_colorweighted_filtering

  • Left disparity estimation with color-weighted aggregation

left_disp_colorweighted

About

Dense disparity estimation via local stereo matching

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages