xlabel comando change achsenbeschriftung matlab title image

matlab - comando - Configuración de la ventana/título de la imagen



plot matlab (1)

Yo tengo:

img = imread(''pic.jpg'',''jpg''); r = img(:,:,1); g = img(:,:,2); b = img(:,:,3); figure, imshow(r); figure, imshow(g); figure, imshow(b);

¿Cómo establecer el título sobre cada imagen?


Desea cambiar el Name propiedad de la ventana de figura.

img = imread(''pic.jpg'',''jpg''); r = img(:,:,1); g = img(:,:,2); b = img(:,:,3); figure(''Name'',''this is the red channel''), imshow(r); figure(''Name'',''this is the green channel'',''NumberTitle'',''off''), imshow(g); title(gca,''you can also place a title like this'') fh = figure; imshow(b); set(fh,''Name'',''this is the blue channel'')

Además, si llama a imshow(g,[]) , escalará automáticamente la imagen a min / max.