I would like to draw a line between two edges on a grayscale image and estimate its length. Need to estimate the diameter of the femoral head. I have tried using houghlines and finally plot (see below) but can't get the code right. I am new to matlab which is probably why. Would be thankful for any hints!
for img = imread(sample);
figure,imshow(img)
hold on
p1 = [10,100];
p2 = [100,20];
plot([p1(2),p2(2)],[p1(1),p2(1)],'Color','r','LineWidth',2);
hold off;
pause;
end