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

2 visualizaciones (últimos 30 días)
Nisreen Sulayman
Nisreen Sulayman el 25 de Jun. de 2015
Editada: Nisreen Sulayman el 25 de Jun. de 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"

Respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by