Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

STPRtool-help

Status
Not open for further replies.

PhDmarwa

Computer
Nov 7, 2013
1
Hello,

I need your help please. I’m now using Statistical Pattern Recognition Toolbox (STPRtool: for Arabic characters recognition base M-SVM classification.
The first step is to prepare data into M-File. This M-file called “data” should be devised into X (image of characters; each image is represented by a vector) and y is the corresponded classes of those images (28 classes: 28 Arabic characters). Can you help me to do this please?
I started(firstclass.m) with the first class and I sai not how continier with other:
Code:
;

imagefiles = dir('*.bmp');      
nfiles = length(imagefiles);    % Number of files found

for ii = 1:nfiles

   currentimage = imread(imagefiles(ii).name, 'bmp');

   I = imresize(currentimage,[13 30]); %// POUR CHANGER LA TAILLE D4UNE IMAGE
% X=[X ; [reshape(I',1,[]) ]];
   X = [X ; [reshape(I,1,[])]];
   % Y(ii)=[1];
end

%Y = ones(nfiles,1);
 Y(1:nfiles)=1;

save data.mat X Y]

Thank you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor