how to remove connectec components from original image?
Show older comments
I detected some connected components. I can plot on image but I wan to remove from original image. for example I want to remove viscircles from original image. when imwrite on image I cant see viscircles
imshow(image);
hold on;
title(['Tespit Edilen Delik Sayısı: ', num2str(numberOfHoles)]);
% Delik merkezlerine kırmızı çarpı işareti koy
viscircles(centroids,10)
imwrite(image,'dd.png')
hold off;
Accepted Answer
More Answers (0)
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!