Can we convert a jpg or png image into a fig file via Matlab?

조회 수: 47 (최근 30일)
Sadiq Akbar
Sadiq Akbar 2022년 10월 19일
댓글: Sadiq Akbar 2022년 10월 19일
If we have a *.jpg or *.png image and we want to convert it to *.fig image using MATLAB code, how will we do it?

답변 (1개)

David Hill
David Hill 2022년 10월 19일
a=imread('yourImage.jpg');
b=figure;
imshow(a);
saveas(b,'b.fig');
  댓글 수: 1
Sadiq Akbar
Sadiq Akbar 2022년 10월 19일
Thank you very much dear David Hill for your kind response. Indeed it worked and is very interesting. Now how will I plot my own data plot on this converted Matlab fig file?

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

카테고리

Help CenterFile Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by