- use text() to write stuff into the overlay and use export_fig() to save the axes as an image, or
- use the textInserter of the Computer Vision System Toolbox to burn text directly into the image and then save the image with imwrite().
Is it possible to make figure caption?
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I would like to save my plot as a png image but with text caption under it. I would like to make a big paragraph caption with the same width as the whole figure. Is it possible to make it under MATLAB?
0 comentarios
Respuestas (2)
Image Analyst
el 19 de Mayo de 2015
One way is to stitch some blank lines onto the bottom of the image, then
1 comentario
Star Strider
el 19 de Mayo de 2015
the annotation('textbox',[x y w h]) function is another option. See the Annotation documentation for details.
Scott MacKenzie
el 1 de Abr. de 2021
Editada: Scott MacKenzie
el 1 de Abr. de 2021
To elaborated on Image Analyst's "stitch some blank lines", here's what worked for me. For the x-axis label, use something like this:
ax = gca;
ax.XLabel.String = sprintf('X Axis Label\n\n\n\n');
The newline characters create some additional empty space below the figure. Then use the text function to add your caption in that space.
1 comentario
Image Analyst
el 1 de Abr. de 2021
Yes, and then he can use exportgraphics() (in r2020a and later) to save the axes or figure to disk.
Ver también
Categorías
Más información sobre Printing and Saving en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!