Rank: 220388 based on 0 downloads (last 30 days) and 0 file submitted
photo

sarika sen

E-mail

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Comments and Ratings by sarika View all
Updated File Comments Rating
16 Jun 2012 Character Recognition Example (III):Training a Simple NN for classification This demo shows some examples for image pre-processing before the recognition stage. Author: Tan Chin Luh

For English and number recognition [(A to E) and (1 to 5)]

charvec = handles.charvec;
selected_net = get(handles.editNN,'string');
selected_net = evalin('base',selected_net);
result = sim(selected_net,charvec);
[val, num] = max(result);

if num>5
num = num -5;
charvec = ['A','B','C','D','E'];
% In this case, output is character, defined as a number from num
else
charvec = [1, 2, 3, 4, 5];
% Else, output is number, defined from num
end

oknum = charvec(1,num);
set(handles.editResult, 'string',oknum);

copywrite to me...

02 Mar 2012 Character Recognition Example (III):Training a Simple NN for classification This demo shows some examples for image pre-processing before the recognition stage. Author: Tan Chin Luh

this application works for numeric figures only, what about english or japanese alphabets?

Contact us