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

2 Ansichten (letzte 30 Tage)
Nisreen Sulayman
Nisreen Sulayman am 25 Jun. 2015
Bearbeitet: Nisreen Sulayman am 25 Jun. 2015
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"

Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by