disparity-map

所属分类:matlab编程
开发工具:C/C++
文件大小:588KB
下载次数:73
上传日期:2013-03-24 10:37:34
上 传 者haitaotianying
说明:  利用matlab立体匹配,可获得立体图像左右视图的视差图代码,效果不错
(Matlab matching around view of the three-dimensional image can be obtained disparity map code, good results)

文件列表:
disparity map\lankton_stereo\lankton_stereo\demo.m (515, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\left.png (72884, 2013-03-23)
disparity map\lankton_stereo\lankton_stereo\msseg\.#RGB2Luv.m (45, 2008-03-31)
disparity map\lankton_stereo\lankton_stereo\msseg\.#test.m (45, 2008-03-31)
disparity map\lankton_stereo\lankton_stereo\msseg\compile_edison_wrapper.m (483, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\edison_wrapper.m (6072, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\edison_wrapper_mex.cpp (8891, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\edison_wrapper_mex.h (776, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\edison_wrapper_mex.mexa64 (115147, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\edison_wrapper_mex.mexglx (105137, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\edison_wrapper_mex.mexw32 (49152, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\Luv2RGB.m (765, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\msfilt.m (1195, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\msseg.m (1468, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg\RGB2Luv.m (798, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\right.png (74827, 2013-03-23)
disparity map\lankton_stereo\lankton_stereo\total_stereo.m (6004, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\tsuL.png (174571, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\tsuR.png (175014, 2007-12-20)
disparity map\lankton_stereo\lankton_stereo\msseg (0, 2010-06-20)
disparity map\lankton_stereo\lankton_stereo (0, 2013-03-23)
disparity map\lankton_stereo (0, 2010-06-20)
disparity map (0, 2013-03-23)

Welcome to the EDISON Wrapper for Matlab The EDISON system contains the image segmentation/edge preserving filtering algorithm described in the paper Mean shift: A robust approach toward feature space analysis and the edge detection algorithm described in the paper Edge detection with embedded confidence. More information about EDISON (and the original codes) can be found here: (http://www.caip.rutgers.edu/riul/research/code/EDISON/index.html) This interface allows these codes to be run from Matlab using MEX files. To use this wrapper, first run >>compile_edison_wrapper This will mex-ify all necessary codes. Then you can begin segmenting images. Here are some sample calls: >> %% This will load, segment, and display the "peppers" image >> I = imread('peppers.png'); >> [fimg labels modes regsize grad conf] = edison_wrapper(I,@RGB2Luv); >> imshow(Luv2RGB(fimg)) >> %% This sets some specific parameters and segments the gantrycrane image >> I = imread('gantrycrane.png'); >> [fimg labels modes regsize grad conf] = edison_wrapper(I,@RGB2Luv,... >> 'SpatialBandWidth',8,'RangeBandWidth',4,... >> 'MinimumRegionArea',50); >> subplot(2,1,1), imshow(I); subplot(2,1,2), imshow(Luv2RGB(fimg)); >> %% This performs filtering only the grayscale "cameraman" image >> I = imread('cameraman.tif'); >> I = repmat(I,[1 1 3]); >> [fimg labels modes regsize grad conf] = edison_wrapper(I,@RGB2Luv,... >> 'steps', 1, 'SpatialBandWidth',8,'RangeBandWidth',4); >> I = rgb2gray(Luv2RGB(fimg)); >> subplot(2,1,1), imshow(I); subplot(2,1,2), imshow(I);

近期下载者

相关文件


收藏者