i want code to convert image to text
조회 수: 2 (최근 30일)
이전 댓글 표시
for example if the image of tree is given i want output as TREE as text
채택된 답변
Benjamin Kraus
2018년 1월 24일
You probably want a Neural Network and Deep Learning, but explaining what that is will take more than a blog post.
One place to start may be here: Deep Learning with MATLAB: Transfer Learning in 10 Lines of MATLAB Code
추가 답변 (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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!