i want code to convert image to text
이전 댓글 표시
for example if the image of tree is given i want output as TREE as text
채택된 답변
추가 답변 (1개)
Thorsten
2018년 1월 24일
You can use deep learning networks from the neural networks toolbox:
nnet = alexnet; % Load pretrained neural net
label = classify(nnet, picture); % Classify
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!