Save image with specific x and y limits

1 Ansicht (letzte 30 Tage)
Bleron Preniqi
Bleron Preniqi am 20 Mai 2019
Kommentiert: Bleron Preniqi am 20 Mai 2019
How can I save an image with fixed x and y limits?
In the specific I want to save an image with x limits -0.4 - 0.4 and y limits -0.4 - 0.4.
But when I save the image the limits are bigger.
plot(camera.Points(:,1),camera.Points(:,2),'rx','marker','o','color','white','MarkerSize',size,'MarkerFaceColor','k');
axis([-.4 .4 -.4 .4]);
set(gca,'Color','black','XTickLabel',[],'YTickLabel',[]);
set(gca,'visible','off');
daspect([1 1 1]);
hfig = figure;
hax_new = copyobj(hax, hfig);
set(hax_new, 'Position', get(0, 'DefaultAxesPosition'));
saveas(gcf,fullfile('../Data/img',sprintf('/Image%04d.jpg', i)));
  2 Kommentare
Walter Roberson
Walter Roberson am 20 Mai 2019
What is hax? If it is a known axes then why are you using gca?
Bleron Preniqi
Bleron Preniqi am 20 Mai 2019
sorry, hax is
hax = subplot(1,2,2);
.. the subplot that I want to save. Now I corrected gca with hax but it doesn't work.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by