フィルターのクリア

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

3 ビュー (過去 30 日間)
img = imread('~~.jpg');
imshow(img);
savefig('~~~.fig');
  5 件のコメント
Muhammad Khan
Muhammad Khan 2018 年 5 月 29 日
there is nothing no figure can you send me file

サインインしてコメントする。

回答 (2 件)

KSSV
KSSV 2018 年 5 月 29 日
images = dir('*.jpg') ;
N = length(images) ;
% loop for each image
for i = 1:N
I = imread(images(i).name) ;
[filepath,name,ext] = fileparts(images(i).name) ;
imshow(I) ;
savefig([name,'.fig']);
end
  6 件のコメント
Walter Roberson
Walter Roberson 2018 年 5 月 30 日
You need to digitize the image like I mentioned. There are a number of File Exchange contributions for this purpose.

サインインしてコメントする。


Walter Roberson
Walter Roberson 2018 年 5 月 30 日
Look in the File Exchange and search for tag:digitize as I have marked a number of routines designed to extract plot information from images.
It would be much easier to extract the data before you wrote them as .jpg files.

カテゴリ

Help Center および File ExchangeDisplay Image についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by