You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
299 B
Matlab
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 |