i want code to convert image to text
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ram charan reddy
il 24 Gen 2018
Commentato: ram charan reddy
il 24 Gen 2018
for example if the image of tree is given i want output as TREE as text
Risposta accettata
Benjamin Kraus
il 24 Gen 2018
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
Più risposte (1)
Thorsten
il 24 Gen 2018
You can use deep learning networks from the neural networks toolbox:
nnet = alexnet; % Load pretrained neural net
label = classify(nnet, picture); % Classify
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!