필터 지우기
필터 지우기

asking about the matlab code for training Pattern Recognition for bank note using Back propagation

조회 수: 3 (최근 30일)
I am working in bank note (using pattern recognition), and I would like to training my neural network. by now I have divide each bank note for 4X12 split (parts) and I found the average for each parts. I have done the following step and I would like to know if I'm going on the right way or not and if there is any suggestion:
1\ I converted the 6 bank note to gray scale. 2\ I split each bank note to 4X12 parts. 3\ I calculated the average for each bank note image parts. 4\ I used bank note (head upright, head reversed, tail upright, tail reversed) for each bank note.
so would you help my in the matlab code for the input, traing the neural network and target, looking forward to hear from you soon, thanks.
  댓글 수: 1
YIP
YIP 2015년 1월 2일
Hello, I am doing the similar project. The recognition of the serial number in the bank notes. May I have the source code for your project?

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

채택된 답변

Greg Heath
Greg Heath 2013년 5월 24일
Single inputs to the net must be vectors of the same size. Therefore columnize your images using the (:) operator. Your input and target matrices should have the dimensions
[ I N ] = [ 48 24 ] = size(inputs)
[ O N ] = [ 6 24 ] = size(targets)
You can rearrange your 24 I/O column pairs anyway you want. For example,
targets = repmat(eye(6),1,4)
Hope this helps.
Thank you for formally accepting my answer
Greg
  댓글 수: 1
Khalid
Khalid 2013년 5월 25일
Thank you very much, I will try that. if there is any similar code for such functional would you please send it to me in order to see the procedure.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Analytics Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by