how to calculate the distance between two pixels?
13 ビュー (過去 30 日間)
古いコメントを表示
find the distance between two pixels in an image..
0 件のコメント
採用された回答
vaishali
2013 年 9 月 21 日
dist=sqrt((y2-y1)^2+(x2-x1)^2);%%%% Where (x1,y1) and (x2,y2) are coordinates of two pixels
0 件のコメント
その他の回答 (1 件)
tami
2014 年 6 月 9 日
hello, i actually have a followup question, I am trying to find a way to calculate the distance between edges of an image created by edge detection toolbox. The edges are painted white on the image, and i need to somehow calculate the distance automatically between the longest distance of each edge. For example if the edge is a square - i would like to calculate the width and length of it.
Thank you Tamir
4 件のコメント
ROHINI BHUTE
2016 年 5 月 20 日
if you use images in the form of matrices and command like d(i,j)=sqrt((y2(i,j)-y1(i,j))^2+(x2(i,j)-x1(i,j)^2) then it becomes easier.i am not sure but try this one.
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!