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

52 ビュー (過去 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 Center および File ExchangeImport, Export, and Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by