how to mask certain regions when using superpixel

1 visualización (últimos 30 días)
Sule Tekkesinoglu
Sule Tekkesinoglu el 11 de Sept. de 2019
Comentada: Sule Tekkesinoglu el 12 de Sept. de 2019
Hi,
When we are using superpixel, how can we only keep the certain region based on the superpixel index and mask the rest of the image?
Thanks.

Respuesta aceptada

darova
darova el 11 de Sept. de 2019
Try this simple example
clc,clear
A = imread('image.png');
[L,NumLabels] = superpixels(A,N);
ix = find(L == 1); % find first superpixel
L1 = L*0;
L1(ix) = 1;
subplot(121)
imshow(A)
subplot(122)
imshow(L1)
Accept the asnwer if it helped

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by