Size and alignment of a digit in an image for neural network training
1 回表示 (過去 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:--
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148386/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148387/image.png)
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.
0 件のコメント
採用された回答
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 件のコメント
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 Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!