How to determine which grid cells a line segment passes through?

Posted 淘淘麻麻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to determine which grid cells a line segment passes through?相关的知识,希望对你有一定的参考价值。

https://cn.mathworks.com/matlabcentral/answers/230155-how-to-determine-which-grid-cells-a-line-segment-passes-through

How to determine which grid cells a line segment passes through?

Similar to my previous question, lets say you have a grid with cells in the x-direction from [1:5] and in the y-direction from [1:5] (5 x 5 grid). Now lets say you have two points on the grid: (0.35, 2.65) and (4.2,4.73).

Is there a simple way to determine which grid cells the line connecting those two points passes through (and the distances of each line segment)?

It is very easily visually to see which cells the line passes through (see figure below). Clearly the line segment passes through cells B1, C1, C2, D2, D3, E3 and E4.

Determining the distances of each line segment through each cell would be more difficult by hand.

I have currently solved the problem by finding the slope and intercept of the line, then determining the intercepts of the line with the grid cell lines. Using this, I can determine the distance of each line segment. Then, to find which cell the line segment falls in, I have to find the centre point of each grid cell and the midpoint of each line segment and do a for loop to determine the minimum distance between each line segment and each cell centre.

Is there a more elegant way to solve this problem? Obviously when dealing with multiple lines and/or a large grid, this will become much more time intensive.

技术分享

 

 

This brings back memories of How do I store the Coordinates of Lines Intersecting a Grid? I refer you to it for the description and documentation.

I later updated the code for it but didn’t post it. The updated code is:

x = 0:5;                            % X-range
y = 0:25;                           % Y-range
lxmb = @(x,mb) mb(1).*x + mb(2);    % Line equation: y = m*x+b
m = -5;                             % Slope (or slope array)
b = 15;                             % Intercept (or intercept array)
mb = [m b];                         % Matrix of [slope intercept] values
L1 = lxmb(x,mb);                    % Calculate Line #1 = y(x,m,b)
hix = @(y,mb) [(y-mb(2))./mb(1);  y];   % Calculate horizontal intercepts
vix = @(x,mb) [x;  lxmb(x,mb)];    % Calculate vertical intercepts
hrz = hix(x(2:end),mb)‘;           % [X Y] Matrix of horizontal intercepts
vrt = vix(y(1:6),mb)‘;             % [X Y] Matrix of vertical intercepts
hvix = [hrz; vrt];                 % Concatanated ‘hrz’ and ‘vrt’ arrays
exbd = find( (hvix(:,2) < 0) | (hvix(:,2) > 25) );
hvix(exbd,:) = [];
srtd = unique(hvix,‘rows‘);        % Remove repeats and sort ascending by ‘x’
exL1 = find((L1 < 0) | (L1 > 25)); % Find ‘y’ values for ‘L1’ off grid
xp = x;                            % Create plotting x-vector for L1
xp(exL1) = [];                     % Eliminate out-of-bounds ‘y’ values from ‘x’
L1(exL1) = [];                     % Eliminate out-of-bounds ‘y’ values from ‘Li’
figure(1)                          % Draw grids & plot lines
plot(repmat(x,2,length(x)), [0 length(y)-1])    % Vertical gridlines
hold on
plot([0 length(x)-1], repmat(y,2,length(y)))    % Horizontal gridlines
plot(xp, L1)                        % Plot more lines here (additional ‘plot’ statements)
hold off
axis equal

It’s been over a year since I wrote it so I would have to study it to remember what I did, but I did my best at the time to document it exhaustively with comments, so that should help. The output (grid intersections) is in the srtd array.

以上是关于How to determine which grid cells a line segment passes through?的主要内容,如果未能解决你的问题,请参考以下文章

How to determine the signal effect of something in certain process?

How To Determine The Cause Of Lots Of Redo Generation Using LogMiner (Doc ID 300395.1)

ruby 确定是否由机器人发出请求。来自http://stackoverflow.com/questions/5882264/ruby-on-rails-how-to-determine-if-a-r

How to find out which process is listening upon a port

EF How to use context.Set and context.Entry, which ships with EF4.1 ?

How to edit codes on the server which runs jupyter notebook using your pc's bwroser