How to convert the following jpg file to matlab.fig file

61 views (last 30 days)
Hi, I am trying to convert this .jpg file to matlab.fig file. I try with imread(*.jpg) and then imagesc(:,1:end). It do display the fig but with a red colour all over the image. Please help me

Accepted Answer

Wanbin Song
Wanbin Song on 28 Oct 2015
As my understanding of your question, it is pretty simple as below:
img = imread('~~.jpg');
imshow(img);
savefig('~~~.fig');
  4 Comments

Sign in to comment.

More Answers (1)

Muhammad Khan
Muhammad Khan on 29 May 2018
I am using this code to convert .jpg file to maltab .fig but in matlab lab file there is no figure represented and if I want to convert more than one .jpg files to fig how can I. I am attaching two files.

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!