source code for handwritten word extraction using matlab
#1

hello all,
i am doing a project on handwrriten word extraction so for the i need a MATLAB code if anyone has please do email me jeevankumarjix124[at]gmail.com
Reply
#2

Research into the automatic identification of writers has focused mainly on the statistical approach. This has led to the specification and extraction of statistical features such as run length distributions, sloped distribution, entropy and edge hinge distribution. The edge hinge distribution feature outperforms all other statistical features. The distribution of the edge hinge is a feature that characterises changes in the direction of a handwriting stroke. The edge hinge distribution is extracted by means of a window that slides over a binary handwriting image detected on an edge. Each time the central pixel of the window is activated, the two border fragments (ie, connected sequences of pixels) are considered to emerge from this central pixel. Their addresses are measured and stored as pairs.

The following code is used for segmentation and labeling.

Code:
I = imread('1.jpg');
bin_im = imcomplement(out);
bin_im = bwareaopen(bin_im,30);
bw1 = bin_im;
cc = bwconncomp(bw1)
cc.NumObjects
%Label the connected components
[Label,Total]=bwlabel(bw1,8);
%Rectangle containing the region
Sdata=regionprops(Label,'BoundingBox');
for i=1:Total  
%Crop all the Images
   Img = imcrop(bw1,Sdata(i).BoundingBox);
   Name = strcat('Object Number:',num2str(i));
   pathname1 = 'C:\Users\sahanpriyanga\Documents\MATLAB\stack\Words';
   baseFileName1 = sprintf('Img%d.jpg',i);
   fullFileName1 = fullfile(pathname1,baseFileName1);
   imwrite(Img,fullFileName1);
end
This is the image that I have used.

It can be understood in the following video:

Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: extraction connected component matlab source code, matlab code for segmentation of handwritten kannada, krawtchouk moment feature extraction for neural arabic handwritten words recognition, source code in matlab for text extraction, text extraction in matlab source code, skeleton extraction matlab source, source code for recognition of handwritten kannada script using matlab,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  voice vased email system source code 0 3,124 20-04-2021, 07:59 AM
Last Post:
  matlab code 1 3,451 31-01-2019, 02:52 PM
Last Post: [email protected]
  underwater optical communication matlab code 0 3,292 02-11-2018, 07:32 PM
Last Post: Guest
  ns2 source codes free download for hello flood attack 0 2,832 31-10-2018, 02:42 PM
Last Post: Guest
  vodafone postpaid bill in word format 0 11,436 25-10-2018, 10:03 AM
Last Post: Guest
  vodafone postpaid bill in word format 0 11,345 24-10-2018, 08:56 PM
Last Post: Guest
  voice based email for blinds source code 0 713 22-10-2018, 05:12 PM
Last Post: Guest
  source code for blood group detection in matlab 0 6,462 22-10-2018, 10:59 AM
Last Post: Guest
  voice based email for blinds source code 0 699 21-10-2018, 07:58 PM
Last Post: Guest
  voice based email for blinds source code 0 635 21-10-2018, 07:43 PM
Last Post: Guest

Forum Jump: