too many input argument
Afficher commentaires plus anciens
function [F]=feature(im)
im=double(im);
m=mean(mean(im));
s=std(std(im));
F=[m s];
end
2 commentaires
Emenike Goodluck
le 10 Nov 2018
Question not well understood. What is the problem you want to solve? Where do you encounter the error?
Walter Roberson
le 10 Nov 2018
How are you invoking this routine ?
Réponses (4)
Anil Kumar
le 11 Nov 2018
0 votes
madhan ravi
le 11 Nov 2018
Modifié(e) : madhan ravi
le 11 Nov 2018
im = rand(1,10)
F=feature1(im) %calling of function
function F=feature1(im)
im=double(im);
m=mean(mean(im));
s=std(std(im));
F=[m s];
end
5 commentaires
madhan ravi
le 11 Nov 2018
Please note that feature is an inbuilt function of matlab so i changes it to feature1 in case to avoid shadowing.
madhan ravi
le 11 Nov 2018
So use imread to read Image file
madhan ravi
le 11 Nov 2018
I told you to change feature to feature1 did you even read my comment??
Anil Kumar
le 11 Nov 2018
madhan ravi
le 11 Nov 2018
Modifié(e) : madhan ravi
le 11 Nov 2018
Anytime :), make sure to accept the answer if it answered your question so that people know the question is solved
Anil Kumar
le 11 Nov 2018
0 votes
Anil Kumar
le 11 Nov 2018
Modifié(e) : madhan ravi
le 11 Nov 2018
1 commentaire
Anil Kumar
le 11 Nov 2018
Modifié(e) : madhan ravi
le 11 Nov 2018
Catégories
En savoir plus sur Big Data Processing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!