From 2385cc06ddad7bc70800cea6ccc2d4759761c497 Mon Sep 17 00:00:00 2001 From: v-h Date: Sun, 8 Jan 2023 09:32:08 +0000 Subject: [PATCH] addidtions from Reini1001 (second part of test - Alexnet) --- alex_test.m | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 alex_test.m diff --git a/alex_test.m b/alex_test.m new file mode 100644 index 0000000..d8953af --- /dev/null +++ b/alex_test.m @@ -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 \ No newline at end of file