How to create executable file for pretrained model Using GUI

8 vues (au cours des 30 derniers jours)
hammad younas
hammad younas le 30 Nov 2021
Commenté : Hiro Yoshino le 30 Nov 2021
Hi, i want to create a executable file for pretrained model using GUI.
I want to load a image from directory using Push Button and Display prediction on that image using Pretrained model
net = googlenet;
I = imread("peppers.png");
inputSize = net.Layers(1).InputSize;
I = imresize(I,inputSize(1:2));
label = classify(net,I);
figure
imshow(I)
title(string(label))
Can anybody help me in that
  3 commentaires
hammad younas
hammad younas le 30 Nov 2021
@Hiro I want to create GUI based Which have button to read image from directory and button make prediction and result display
hammad younas
hammad younas le 30 Nov 2021
@Hiro I have updated the question

Connectez-vous pour commenter.

Réponses (2)

yanqi liu
yanqi liu le 30 Nov 2021
yes,sir,when use gui transfer to exe,offen use mcc,and now suggest use applicationCompiler
may be use web api to generate http server is better

Hiro Yoshino
Hiro Yoshino le 30 Nov 2021
@hammad younas I can give you a solution.
MATLAB > App > Open App Designer
This is what you need. With that app, you can design your own GUI app that has your algorithm.
You can have a button and figure window(s). This app is also easy to use - just take a look and start designing it.
  1 commentaire
Hiro Yoshino
Hiro Yoshino le 30 Nov 2021
Note that after designing your GUI app, make sure to compile it to exe so you can use it as a stand alone app!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Data Workflows dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by