How to change the direction of x axis.

조회 수: 30 (최근 30일)
Guillermo Arias
Guillermo Arias 2021년 5월 21일
댓글: Star Strider 2021년 5월 21일
Hello, i'm working proccesing images with Matlab and i want to change the direction of x axis. Does anyone know how can i do it?. The red are my actual axis, and i want get the white one, so i need to rotate the x axis 180 degrees.
Thank you.

채택된 답변

Star Strider
Star Strider 2021년 5월 21일
Reversing the axis direction reverses the plot as well.
I = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/625258/Captura.PNG');
figure
imshow(I)
title('Original')
figure
imshow(I)
Ax = gca;
Ax.XDir = 'reverse';
title('X-Axis Direction Reversed')
.
  댓글 수: 2
Guillermo Arias
Guillermo Arias 2021년 5월 21일
Okey, thank you very much.
Star Strider
Star Strider 2021년 5월 21일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Stephan
Stephan 2021년 5월 21일
편집: Stephan 2021년 5월 21일
A = imread('ngc6543a.jpg');
imshow(A)
B = fliplr(A);
imshow(B)

Guillermo Arias
Guillermo Arias 2021년 5월 21일
Thank you!!. Is there any way to flip the axis instead of the image??

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by