フィルターのクリア

extraction of corner points in grid image and how to calculate the distance between corner points

2 ビュー (過去 30 日間)
I ma providing the grid image & i want to find the each corner points of box/square in my image and want to calculate the distance between each corner points

採用された回答

Image Analyst
Image Analyst 2017 年 12 月 22 日
You can use the sqrt function. So if x and y are 4 element arrays, then do get the diagonal distances, use the appropriate indexes, for example
diagonalDistance1 = sqrt((x(1)-x(3))^2 + (y(1)-y(3))^2);
diagonalDistance2 = sqrt((x(2)-x(4))^2 + (y(2)-y(4))^2);
You forgot to provide your image (so read this), but assuming you have a white square box on a black background, you can use regionprops to find the centroid of the box, then use bwboundaries to find all the (x,y) coordinates of the perimeter. Then use sqrt() to find the distances of every point to the centroid, and use findpeaks() (in the Signal Processing Toolbox) to find the 4 peaks, which should be at the corners.
  19 件のコメント
praveen rai
praveen rai 2017 年 12 月 28 日
what is d purpose of finding end points and horizontal lines i mean to say i need d corners points and there respective location(x,y)
praveen rai
praveen rai 2017 年 12 月 28 日
is there any function in matlab like circle detector to detect square and find the corner?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Segmentation and Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by