error in test the retrain image
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi . i have done training image using googlenet and now i want to test weather the name of image is right or wrong . here is my coding and i got some error. someone please help me to solve the error.
function [label] = classifier(img)%codegen
load myNet;
img = imresize(img, [224, 224]);
label = classify(myNet, img);
end
the error is:
>> classifier
Not enough input arguments.
Error in classifier (line 5)
img = imresize(img, [224, 224]);
and here other coding to test the image
clear all;
clc;
%-------------------------------------------------------------------------%
%reading the picture
picture = imread('5.jpg');
%reading the function
[label] = classifier(picture);
%showing the label
imshow(picture);
title(char(label));
0 commentaires
Réponses (1)
KALYAN ACHARJYA
le 2 Avr 2019
Modifié(e) : KALYAN ACHARJYA
le 2 Avr 2019
As you have use the following assignment inn function file
img = imresize(img, [224, 224]);
This way applies to grayscale image.
But in main script, you pass the color image
picture = imread('5.jpg');
%reading the function
[label] = classifier(picture);
Either pass gray image to the function or change the imresize statement in function file, which may applicable for color image. You can easily do that check here.
Hope it Helps!
0 commentaires
Voir également
Catégories
En savoir plus sur Image Data Workflows dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!