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

2 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by