convert image to strings

11 views (last 30 days)
devaki anjan
devaki anjan on 20 Feb 2013
Edited: Walter Roberson on 16 May 2015
how do i convert image to strings(an array of strings)? pls help me. thanks in advance
  2 Comments
Walter Roberson
Walter Roberson on 20 Feb 2013
Please expand on what you mean. Are you trying to do Optical Character Recognition?
devaki anjan
devaki anjan on 20 Feb 2013
i am trying to convert an image to a text file or an array of strings and it has to be reversible too. This is just a part of my project.

Sign in to comment.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 20 Feb 2013
Edited: Azzi Abdelmalek on 20 Feb 2013
im=iread('yourimage')
out=num2str(im)
  5 Comments
Eman Gomaa
Eman Gomaa on 16 May 2015
can i use it in huffman coding and decoding
Walter Roberson
Walter Roberson on 16 May 2015
Edited: Walter Roberson on 16 May 2015
Yes. But you will get better compression if you do Huffman coding on the binary values than on the text representation of the binary values.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 20 Feb 2013
An alternative is im2html, which gives a nice visual display: http://www.mathworks.com/matlabcentral/fileexchange/32273-im2html-m
Another alternative is to use sprintf() or fprintf(). It really depends on how you want to use the string.

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!