How to get parallel lines in a binary image?
1 view (last 30 days)
Show older comments
I want to find parallel lines in a binary image and calculate the distance between them....
Can anyone help me with the code?
7 Comments
Answers (1)
Priysha LNU
on 6 Oct 2020
You may simply calculate the distance between two lists of points as :
Let data1 and data2 be two set of points.
data = data1 - data2;
dist = sqrt(data(:,1).^2+data(:,2).^2);
DISCLAIMER: These are my own views and in no way depict those of MathWorks.
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!