필터 지우기
필터 지우기

Size and alignment of a digit in an image for neural network training

조회 수: 3 (최근 30일)
Hi, I have been working on OCR using the Neural Network toolbox but I have a few fundamental doubts. Suppose I have the following images of digits:--
Since the digits are of different sizes, will it affect the neural network training and simulation? What are the parameters that a neural network uses to recognise images(like size, pixel values, shape, alignment, etc)? Please advise.

채택된 답변

Greg Heath
Greg Heath 2013년 6월 12일
The input to the net from a single image is just a column vector of numbers of dimension I obtained by feature extraction. The feature extraction of an image of size r x c can be complicated or as simple as columnisation via
input = image(:);
size(input) = [ I 1 ] = [ r*c 1 ]
Hope this helps.
Thank you for formally accepting my answer
Greg
  댓글 수: 4
Soumyadip
Soumyadip 2013년 6월 13일
Thanks a lot. Can you provide me any resource on this feature extraction and size normalization stuff?
Greg Heath
Greg Heath 2013년 6월 14일
No. However, maybe one of the resident image experts will respond.
If there is no response, try making that another posted question.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by