addidtions from Reini1001 (second part of test - Alexnet)

This commit is contained in:
v-h 2023-01-08 09:32:08 +00:00
parent 95de8839a6
commit 2385cc06dd

13
alex_test.m Normal file
View File

@ -0,0 +1,13 @@
function [] = alex_test(imgToClassify)
%ALEX_TEST Summary of this function goes here
% Detailed explanation goes here
load('DasNetz2uuuuuuaaaauauaauauauauaua.mat', '-mat', 'netTransfer');
label = classify(netTransfer, imgToClassify);
figure
imshow(imgToClassify);
title(label);
end