Image processing and contour detection

88 ビュー (過去 30 日間)
KATHAN BHAVSAR
KATHAN BHAVSAR 2023 年 4 月 12 日
回答済み: Image Analyst 2023 年 4 月 15 日
With respect to the image below, how can I detect the the upper (red) and lower (green) contour on the boundaries shown n the image below. Also, how do I calculate the distance between the two boundaries (blue)?

採用された回答

Sachin
Sachin 2023 年 4 月 14 日
Hi
I understand that you want to find the contours in the image.
I suggest you to use Image processing and Computer Vision Toolbox. The toolbox provides two functions -
  1. ‘bwboundaries' – This function is used to compute the boundary of a binary image . It takes a binary image as input and computes the boundary of the connected region in the binary image
  2. ‘bwtraceboundary’ – This function is used to trace a boundary in a binary image.It takes a binary image as input and a starting point on the boundary and trace the boundary of the connected region in the image.
These function provides boundary coordinates that can be used find the distance between two points
grayImage = rgb2gray(image);
threshold = 50; % Set threshold value
binaryImage = grayImage > threshold;
boundaries = bwboundaries(binaryImage);
imshow(image);
hold on;
for k = 1:length(boundaries)
boundary = boundaries{k};
plot(boundary(:,2), boundary(:,1), 'b', 'LineWidth', 2);
end
If you encounter any issues with these functions, you can also use OpenCV library to find contours.
Please refer the following page for more information about boundary function:
Please refer OpenCV documentation for more information on finding contours
  1 件のコメント
KATHAN BHAVSAR
KATHAN BHAVSAR 2023 年 4 月 15 日
Thank you, I will certainly try this out.

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2023 年 4 月 15 日
To find average width of a blob, see attached demo.

カテゴリ

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

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by