フィルターのクリア

how to find the corners of an irregular binary shape

4 ビュー (過去 30 日間)
Dhandapani.S
Dhandapani.S 2015 年 1 月 6 日
コメント済み: Image Analyst 2017 年 11 月 29 日
my work is irregular shape (image) matching. i have to extract the points( topleftmost, top right most, the same ay botom. i have to draw a line from top left to bottom right. again a line from top right to bottom left. i have to find the angle between two lines.

採用された回答

Image Analyst
Image Analyst 2015 年 1 月 6 日
Usually when people ask for image processing advice, they attach an image. I'd guess that you can just find all the rows and columns and take the min and max.
[rows, columns] = find(binaryImage);
topRow = min(rows);
bottomRow = max(rows);
leftColumn = min(columns);
rightColumn = max(columns);
% Draw horizontal lines at top and bottom.
line([leftColumn, rightColumn], [topLine, topLine], 'Color', 'y', 'LineWidth', 3);
line([leftColumn, rightColumn], [bottomRow, bottomRow], 'Color', 'y', 'LineWidth', 3);
Another way is to get the vertical and horizontal profiles and use find() to find the first and last non-zero elements. Not sure which is faster - you can try them both.
  7 件のコメント
Marlon Damaceno
Marlon Damaceno 2017 年 11 月 29 日
in the above example two diagonal lines were drawn in the image, how do you insert a vertical and a horizontal one passing through the center of the image?
Image Analyst
Image Analyst 2017 年 11 月 29 日
You can write into the image like
grayImage(:, 32) = 255; % Draw white line at column 32
or just use plot() to plot into the overlay.

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

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by