How to solve error "Error using bwmorph"
Afficher commentaires plus anciens
I want to doing a feature extraction steps for multiple images, i have this function:
% this function is supposed to extract features from the input image
function [features]=feature_extraction(I)
if length(size(I))>2 % checking if rgb image;
I=im2bw(I,graythresh(I));
end
I=bwmorph(I,'skel',inf);
I=discourser(I);
row=size(I,1);
column=size(I,2); ... and so on.
And I call it in another script.
files = dir('*.png');
for i = 1:numel(files)
I = files(i).name;
[getfeature] = feature_extraction(I);
end
5 commentaires
Walter Roberson
le 4 Août 2015
You omitted the error message.
Walter Roberson
le 4 Août 2015
Yes, to be expected when you pass in the name of the file instead of the content of the file.
ana ain
le 6 Août 2015
Walter Roberson
le 6 Août 2015
I understand that. What I'm saying is that if you put the responses into into a file and then run
myexe.exe < c:\temp\inputs.txt
in the command shell and then, assuming that works,
system('myexe.exe < c:\temp\inputs.txt')
does it work?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Morphological Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!