How to fill the blob cirlces of an image with a colour?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am using Laplacian blob detector to detect my region of interest of the below image. Im able to plot the blobs on the required regions. But is there anyway to fill the blob circles with a solid colour, so that the region covered by the blob circles seem as if they are continuosly painted on the intended area?
![rgb.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/257631/rgb.jpeg)
2 Commenti
Risposta accettata
Image Analyst
il 4 Gen 2020
Use scatter() with the 'filled' option.
scatter(x, y,'filled') fills in the circles. Use the 'filled' option with any of the input argument combinations in the previous syntaxes.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!