Home > Matching_SYM_LSM > src > 2D_LSM_62 > 2D_LSM_62_sym_Functions > show_main_left_right_images_0.m

show_main_left_right_images_0

PURPOSE ^

% plot initial pair of images left and right

SYNOPSIS ^

function fig_lr = show_main_left_right_images_0(g,h,max_iter)

DESCRIPTION ^

% plot initial pair of images left and right

 wf 7/2020

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function fig_lr = show_main_left_right_images_0(g,h,max_iter)
0002 %% plot initial pair of images left and right
0003 %
0004 % wf 7/2020
0005 
0006 figure('name','estimated left and right images ');
0007 fig_lr = gcf;
0008 subplot(max_iter+1,2,1)
0009 imshow(g/255);
0010 title('left original ')
0011 subplot(max_iter+1,2,2)
0012 imshow(h/255);
0013 title('right original ')
0014 
0015 end
0016

Generated on Sun 19-Jul-2020 23:00:25 by m2html © 2005