how to connect the label region?how regionprops work?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Tan Wen Kun
am 5 Nov. 2015
Beantwortet: Walter Roberson
am 6 Nov. 2015
a = imread('apple.jpg');
b = rgb2gray(a);
BW = edge(b,'canny');
L = bwlabel(BW);
s = regionprops(BW,'centroid');
centroids = cat(1, s.Centroid);
imshow(BW)
hold on
plot(centroids(:,1),centroids(:,2), 'b*')
hold off
The image is just a red apple with white background.
What I want to do is to segment the apple
I want to connect label region together to form the apple again.
How to do it?
What does the regionprops doing?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 6 Nov. 2015
The regionprops is just taking in the label matrix and calculating the centroids of each region. That does not have any apparent connection to connecting the label regions together to form the apple again.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!