HA_DIGSIG/alex_test.m

13 lines
299 B
Matlab

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