How to draw a circle around blob objects in an image??

2 ビュー (過去 30 日間)
Nisreen Sulayman
Nisreen Sulayman 2015 年 6 月 25 日
編集済み: Nisreen Sulayman 2015 年 6 月 25 日
I have about 180 images .... I draw circle about blob objects in each image using the following code
i goes from 1 to 180
********************
figure
imshow(Or_Im{i}, [ ]);
hold on
for k = 1 : numberOfBlobs{i} % Loop through all keeper blobs.
itsRound{i} = logicalKeepersIndexes{i}(k); % See if this blob is considered round.
if itsRound{i}
% Plot round blobs with a green circle.
plot(centroidsX{i}(k), centroidsY{i}(k), 'ro', 'MarkerSize', 30, 'LineWidth', 1);
end
end
hold off
*********************
I want to draw the circle on the 180 images and save the resulted image without using "figure", "imshow" and "plot"

回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by