How can I load the .mat file in GUI?

4 ビュー (過去 30 日間)
Nazia Hameed
Nazia Hameed 2017 年 10 月 16 日
コメント済み: Nazia Hameed 2017 年 10 月 17 日
I have train alexnet and save it into .matfile. when I load that file to classify an image it is working fine like this
clear all;
clc;
load all.mat;
[FileName,PathName] = uigetfile('C:\Users\NH529\MATLAB\Deep learning\Images\*.jpg');
I = (imread([PathName '\' FileName]));
I=imresize(I, [227 227]);
label = classify(myNet,I);
finallabel=categorical(label);
imshow(I),title(sprintf('%s', finallabel));
But when I load this .matfile in the GUI it is giving me an error. How can I load it into GUI file. I have searched and tried the available answers but they didn't work
How can I solve this problem? Please help me
  5 件のコメント
Nazia Hameed
Nazia Hameed 2017 年 10 月 17 日
ok, thanks. let me check and I will let u know. Thankyou so much.
Nazia Hameed
Nazia Hameed 2017 年 10 月 17 日
thankyou so much. Problem solved. Stay blessed.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by