show_data

close all; clear
load positions_storage.mat
positions_storage
positions_storage =

  490.0000         0  169.0060         0  -90.0000  180.0000
  228.3570  150.0770  174.2840  116.9000  -32.1200   66.4700
  290.7330  -58.1930  158.2990 -104.7300   -2.3400  -84.6100
  268.9440    0.2980  123.2900  180.0000  -35.1700    0.0600
  338.9790   17.2360  166.2800   -1.5100  -57.1700 -176.3700

load pictures_storage_cam1
load pictures_storage_cam2
sz = size(pictures_storage_cam1);
N1 = sz(1);
N2 = sz(2);
N3 = sz(3);
bigv = zeros(N3*N1,2*N2);
noff=0;
for k=1:N3
    bigv(noff+(1:N1),:) = im2double([pictures_storage_cam2(:,:,k) pictures_storage_cam1(:,:,k)]);
    noff=noff+N1;
end
imshow(bigv);
Warning: Image is too big to fit on screen; displaying at 17%