Finding Connected components to a particular pixel in binary image
Mostra commenti meno recenti
Hi,
I have a binary image with many blobs. I want to know all the connected pixels to a particular pixel whose index I know before hand. How do i do that?
Risposte (1)
KALYAN ACHARJYA
il 12 Dic 2017
Modificato: KALYAN ACHARJYA
il 12 Dic 2017
% Try following
CC=bwconncomp(binary_image); % Default 8 Pixel connected you can change it by
cc=bwconncomp(binary_image,disired_connected_value);
% For detail visit following link
https://in.mathworks.com/help/images/ref/bwconncomp.html
1 Commento
RIshabh Golchha
il 12 Dic 2017
Categorie
Scopri di più su Images in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!