i want code to convert image to text

for example if the image of tree is given i want output as TREE as text

 Accepted Answer

You probably want a Neural Network and Deep Learning, but explaining what that is will take more than a blog post.

1 Comment

i want total code explanation is not required.use only predefined images

Sign in to comment.

More Answers (1)

You can use deep learning networks from the neural networks toolbox:
nnet = alexnet; % Load pretrained neural net
label = classify(nnet, picture); % Classify

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!