Data format in neural network
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all, Kindly i really appreciate your help , i have a plan to make skin color segmentation by using neural network , i just have a problem how to format my database ,input vectors it's gona be YCbCr color space and the target 1,0 skin,non skin
Thanks
댓글 수: 0
채택된 답변
Greg Heath
2013년 10월 18일
편집: Greg Heath
2013년 10월 23일
N pairs of I-dimensional inputs and 1-dimensional targets.
[ I N ] = size(inputs)
[ O N ] = size(targets) % O =1
net = patternnet; % First consider defaults
help patternnet
If you have an older version of the NNTBX, try newpr.
help newpr
You may want to practice on the classification/pattern-recognition data in
help nndatasets.
Thank you for formally accepting my answer
Greg
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
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!