필터 지우기
필터 지우기

get the matrix values under a line

조회 수: 6 (최근 30일)
Armindo
Armindo 2015년 10월 11일
댓글: Rahand Dalshad 2021년 5월 2일
Hi,
I have a matrix of data (120x90) that I plot and then I draw a diagonal line by doing something like:
plot([x1,x2],[Y1,Y2],'g.');
I need to be abe to determine all the matrix values under the line. Any idea about how to perform this efficiently?

답변 (3개)

Image Analyst
Image Analyst 2015년 10월 12일
If you have the Image Processing Toolbox, you can get this information from the function improfile().
improfile(I,xi,yi,n) returns pixel intensity values, where n specifies the number of points to include.
c = improfile(___) returns the intensity values in c, an n-by-1 vector, if the input is a grayscale intensity image, or an n-by-1-by-3 array if the input is an RGB image.
[cx,cy,c] = improfile(I,xi,yi,n) additionally returns the spatial coordinates of the pixels, cx and cy, of length n.
  댓글 수: 3
Image Analyst
Image Analyst 2015년 10월 13일
You're welcome. Can you go ahead and "Accept this answer" then? Thanks!
Rahand Dalshad
Rahand Dalshad 2021년 5월 2일
Dear Image Analyst,
I want to thank you personally for all your help, suggestions and solutions to Matlab issues and questions. Lately, I am doing much images post-processing of optical obtained images and data. Wherever I stuck and google for a proper solution, I find the best and easiest solution from you.
Thank you again and keep up the good work
Regards form Germany
Rahand

댓글을 달려면 로그인하십시오.


Star Strider
Star Strider 2015년 10월 11일
You would have to define every (x,y) pair along the line, in terms of the row and column values of the matrix coordinates. That will likely be straightforward when you derive an equation for the line.
I am not certain what information you want from the matrix, but you might also consider using the interp2 function if you want to interpolate the values of the matrix.
  댓글 수: 4
Armindo
Armindo 2015년 10월 12일
Your are completly right. I did not explain myself properly and I apologize for that. I belive that your suggestion (about determine the intersections of the line with a grid of coordinates) would work perfectly I will give it a try. Thank you very much for the help and code.
Star Strider
Star Strider 2015년 10월 12일
My pleasure.
I tested that code thoroughly so it should be robust. I’ll do my best to help you adapt it if necessary, but I wrote it years ago (and haven’t used it much since), so I’d have to remember what I did.

댓글을 달려면 로그인하십시오.


William Chamberlain
William Chamberlain 2018년 10월 17일
  댓글 수: 1
Image Analyst
Image Analyst 2018년 10월 17일
Using improfile() with the 'nearest' option would also do that, if he wanted to go to the nearest pixel instead of doing subpixel interpolation.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by