% plot initial pair of images left and right wf 7/2020
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