Borrar filtros
Borrar filtros

Visualization of the legend outside of the image

1 visualización (últimos 30 días)
Mateusz
Mateusz el 5 de Oct. de 2013
Comentada: Mateusz el 10 de Oct. de 2013
Hi,
I am using the following code to visualize the image with legend:
currImg = imread(imagePath);
fig = figure('Visible', 'off');
imshow(currImg);
hold all;
legendHandler = legend(textLegend(:), 'Location', 'BestOutside');
set(legendHandler,'FontSize',8);
hold off;
print(fig, '-djpeg', outfilepath);
Unfortunately, in some cases I get a legend that doesn't fit in the figure (see the attached image). How can I fix it?
[update] It seems the real culprit is
print(fig, '-djpeg', outfilepath);
as imshow shows the image correctly.

Respuesta aceptada

Image Analyst
Image Analyst el 6 de Oct. de 2013
Have you tried other location options, such as 'Best'?
  4 comentarios
Mateusz
Mateusz el 10 de Oct. de 2013
I use ghexport and it seems it works now.
hgexport(fig, outfilepath, hgexport('factorystyle'), 'Format', 'jpeg');
Mateusz
Mateusz el 10 de Oct. de 2013
Ok, it seems export_fig works better, thanks a lot!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by