does anybody have handwrittenenglish text recognition using image processing matlab code???? i want full code of this.please help out me

1 view (last 30 days)
inputimage=imread('D:\MTECH\miniproject\images\s.png'); threshold=graythresh(inputimage); imagebinary=im2bw(inputimage,threshold); m=~(imfill(~imagebinary,'holes')); imagebinary=~m; imagebinary=bwareaopen(imagebinary,30); word=[]; re=imagebinary; in=fopen('text.doc','wc'); load s; global templates
character=size(template,2);
while [firstline re]=lines(re); [start num]=bwlabel(firstline); for n=1 :num [row column]=find()

Answers (1)

Image Analyst
Image Analyst on 18 May 2015
It's in the Computer Vision System Toolbox: http://www.mathworks.com/help/vision/ref/ocr.html#bt548t1-2_1

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!