예제_웹캠을 이용한 전이학습 딥러닝(Googlenet)
deepNetworkDesigner camera = webcam; inputSize = trainedNetwork_1.Layers(1).InputSize(1:2) h = figure; h.Position(3) = 2*h.Position(3); ax1 = subplot(1,2,1); ax2 = subplot(1,2,2); im = snapshot(camera); image(ax1, im) im = imresize(im,inputSize); [YPred, probs] = classify(trainedNetwork_1, im); imshow(im) label = YPred; title(string(label) + ", " + num2str(100*max(probs),3) + "%"); [~,idx] = sor..