Borrar filtros
Borrar filtros

how to mask on roi area

1 visualización (últimos 30 días)
asthana
asthana el 19 de Feb. de 2014
Comentada: asthana el 19 de Feb. de 2014
hello sir/madam i want to mask some portion of image and that portion will decide by user not me. so how to mask the portion and how to get the detail about that mask portion like area.

Respuesta aceptada

Image Analyst
Image Analyst el 19 de Feb. de 2014
  1 comentario
asthana
asthana el 19 de Feb. de 2014
thank you very much

Iniciar sesión para comentar.

Más respuestas (1)

Dishant Arora
Dishant Arora el 19 de Feb. de 2014
you can ask user to interactively specify ROI:
I = imread('fullfilename');
imshow(I)
h = imfreehand(gca);
wait(h) % waits for user to specify region of interest
bw = createMask(h) % Binary mask with 1's inside ROI
  1 comentario
asthana
asthana el 19 de Feb. de 2014
thank you mr.dishant arora

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by