1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| load('droite.mat')
load('gauche.mat')
y_droit = pixels_droit(:,2);
x_droit = pixels_droit(:,1);
y_gauche = pixels_gauche(:,2);
x_gauche = pixels_gauche(:,1);
milieu_y_droit = min(y_droit(:))+(max(y_droit(:)) - min(y_droit(:)))/2;
milieu_x_droit = min(x_droit(:))+(max(x_droit(:)) - min(x_droit(:)))/2;
milieu_y_gauche = min(y_gauche(:))+(max(y_gauche(:)) - min(y_gauche(:)))/2;
milieu_x_gauche = min(x_gauche(:))+(max(x_gauche(:)) - min(x_gauche(:)))/2;
figure
plot(x_droit,y_droit,'g',x_gauche,y_gauche,'r')
line([milieu_x_droit milieu_x_gauche],[milieu_x_gauche milieu_y_gauche]); |
Partager