필터 지우기
필터 지우기

Handwritten numbers and characters recognition

조회 수: 4 (최근 30일)
Mo'ath Al-Hayek
Mo'ath Al-Hayek 2022년 3월 26일
댓글: Mo'ath Al-Hayek 2022년 3월 26일
Dears,
I'm trying to recognize handwritten characters and numbers using MATLAB, but I'm struggeling in identifying the dataset that includes both numbers and characeters. I know prprob function uses to identify the characters but I dont know how to identify the numbers to an equal data set.
I know the basics and I wrote the following:
I = imread('Test.jpeg');
imshow(I)
Igray=rgb2gray(I);
imshow(Igray)
Ibw = im2bw(Igray,graythresh(Igray));
imshow(Ibw)
Iedge = edge(uint8(Ibw));
imshow(Iedge)
se = strel('square',2);
Iedge2 = imdilate(Iedge, se);
imshow(Iedge2);
Ifill= imfill(Iedge2,'holes');
imshow(Ifill)
[Ilabel, num] = bwlabel(Ifill);
disp(num);
Iprops = regionprops(Ilabel);
Ibox = [Iprops.BoundingBox];
Ibox = reshape(Ibox,[4 24]);
hold on;
any ideas on how to build and train the network?
  댓글 수: 6
Walter Roberson
Walter Roberson 2022년 3월 26일
Please note that @Greg Heath seldom volunteers anymore. It might be some time before he notices your mention of him.
Mo'ath Al-Hayek
Mo'ath Al-Hayek 2022년 3월 26일
Thanks a lot for your note, any ideas on how to get a dataset for both numbers and letters together? I want to train a network on both numbers and letters then simplify that dataset into lets say 7*5 matrix or something similiar. Is that possible?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by