extraction of the bright blob

1 回表示 (過去 30 日間)
Walaa
Walaa 2022 年 11 月 2 日
回答済み: KALYAN ACHARJYA 2022 年 11 月 2 日
I want to segment the bright blob and measure its major axis .

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2022 年 11 月 2 日
grayImage=imread('image_test11.png');
bw_Image=imbinarize(grayImage,0.99); % Change threshold as per desired output
biggestBlob=bwareafilt(bw_Image,1);
imshow(biggestBlob);
# The resultant image is a mask, apply the mask to the gray image and get the result. To be more precise though, do more steps (such as morphological operations) on the gray image.

その他の回答 (0 件)

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by