Second Prediction for CNN network
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I am developing an artificial intelligence system for recognizing dog breeds, which is currently still being tested and working with flowers. It is made through a Convolutional Neural Network.
I have the first predicted result, which is considered the closest in percentage. Can anyone help me to make a second and possibly a third prediction?
This is the code brief for the result field:
% Button pushed function: pushbutton2
function pushbutton2_Callback(app, event)
I = app.I;
I= imresize(I,[500,500],'nearest');
[Pred,scores] = classify(net,I);
scores = max(double(scores*100));
app.edit2.Value = scores + "%" + " " + string(Pred);
*edit2 is the the field for the first prediction*
Thanks in advance :)

0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Delaunay Triangulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!