Recognising/classify segmented objects in RGB image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Teshan Rezel
el 7 de Feb. de 2020
Comentada: Teshan Rezel
el 11 de Feb. de 2020
Hi all,
After successfully thresholding an image using Otsu's method, is there a way to pass the thresholded objects only with a view to classify the objects within?
Thanks
0 comentarios
Respuesta aceptada
Ajay Pattassery
el 10 de Feb. de 2020
Hello,
The following sample code will extract the segment of image that you could use for classification.
Here I assumed you wanted to threshold an RGB image and you are using grey scale intensity of the RGB image for Otsu’s thresholding.
colorImage= imread('peppers.png');
grayVersion = rgb2gray(colorImage);
thresholded = imbinarize(grayVersion); %Does thresholding by using Otsu’s method.
thresholded(:,:,2) = thresholded;
thresholded(:,:,3) = thresholded(:,:,1);
colorImage(thresholded == 0) = 0; %Extract the color image with the threshold region alone
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!