필터 지우기
필터 지우기

How to get the pixels intersected with a vector line?

조회 수: 15 (최근 30일)
Lavender Liu
Lavender Liu 2016년 3월 24일
답변: Reza Teimoori 2021년 3월 3일
I would like to get the image pixels which intersect with a vector line . As shown in the figure below, I would like to get the yellow pixels; the starting coordinates (x1,y1) and ending coordinates (x2,y2) of the vector line are known. Could anybody help me to solve this question? I used matlab sometimes but not well.

답변 (3개)

Image Analyst
Image Analyst 2016년 3월 24일
You can use linspace and round the coordinates. Be sure to have enough points so that you don't skip any pixels. But when you do that you might have duplicate pixels that you have to remove. Here's the demo:
m = zeros(11,7)
imshow(m, 'InitialMagnification', 1600);
axis on;
axis image;
grid on;
x1 = 1;
y1 = 7;
x2 = 7;
y2 = 5;
% Create a line from point 1 to point 2
spacing = 0.4;
numSamples = ceil(sqrt((x2-x1)^2+(y2-y1)^2) / 0.4)
x = linspace(x1, x2, numSamples)
y = linspace(y1, y2, numSamples)
xy = round([x',y'])
dxy = abs(diff(xy, 1))
duplicateRows = [0; sum(dxy, 2) == 0]
% Now for the answer:
finalxy = xy(~duplicateRows,:)
finalx = finalxy(:, 1);
finaly = finalxy(:, 2);
% Plot the points
hold on;
plot(finalx, finaly, 'y*');

Walter Roberson
Walter Roberson 2016년 3월 24일
That looks like a job for improfile()

Reza Teimoori
Reza Teimoori 2021년 3월 3일
If you are looking for an accurate and fast method you have to employ a so-called ray-tracing approach such as this one. Most of them try to find the intersection of the line with planes (rather than pixels). This way you would be reducing your problem's dimensionality from to in 2D and from to in 3D.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by