How to create executable file for pretrained model Using GUI
4 次查看(过去 30 天)
显示 更早的评论
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
I am trying to develope exe for this example ( https://www.mathworks.com/help/deeplearning/gs/classify-image-using-pretrained-network.html )
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
回答(2 个)
yanqi liu
2021-11-30
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
0 个评论
Hiro Yoshino
2021-11-30
@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 个评论
Hiro Yoshino
2021-11-30
Note that after designing your GUI app, make sure to compile it to exe so you can use it as a stand alone app!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!