i want code to convert image to text
1 回表示 (過去 30 日間)
古いコメントを表示
ram charan reddy
2018 年 1 月 24 日
コメント済み: ram charan reddy
2018 年 1 月 24 日
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!