Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I load images in matlab and work with them as double matrices.

Now I want to extract the data values across a straight line from one point of the image to another. This line however does not equal to a column or row (that would be easy).

How can I do that with matlab?

share|improve this question

1 Answer

up vote 3 down vote accepted

A line obeys the eq of the line y=a*x+b. Here x and y are coordiantes of the image. So if you want a line defined by two points (x1,y1) -> (x2,y2), the slope a is (y2-y1)/(x2-x1) and b=y1-a*x1. So next , select points in the matrix the obey the eq of the line as follows:

Create data and end points:

m=peaks(50);
x1=5 ; x2=42;
y1=21; y2=29;

calculate ew of line parameters:

a=(y2-y1)/(x2-x1);
b=y1-a*x1;

define the line:

x=x1:x2;
y=round(a*x+b);

select the proper matrix elements using linear indexing:

ind=sub2ind(size(m),y,x)

plot:

subplot(2,1,1)
imagesc(m); hold on
colormap(bone)
line([x1 x2],[y1 y2],'Color',[1 0 0]);

subplot(2,1,2)
plot(m(ind))

enter image description here

share|improve this answer
Works very well! However the calculation of a is wrong (x and y reversed): a=(y2-y1)/(x2-x1); – Matthias Pospiech Feb 7 at 9:51
already corrected that (in the code but not in the explanation)... thanks for noticing. now corrected. – natan Feb 7 at 9:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.