how to convert grayscale image to binary matrix?

Answers (1)

See the documentation on the im2bw (link) and imbinarize (link) functions.

6 Comments

I need grayscale image to be an 8 by 8 binary matrix.
See the documentation on Matrix Indexing (link).
After thresholding with the functions, or yourself like this:
binaryImage = grayImage > someThreshold;
call imresize() to make the image 8 by 8
binaryImage = imresize(binaryImage, [8,8], 'nearest');
i didn't get your ans..please give some examples or write complete code for this
Search the File Exchange (link) for Image Analyst’s demonstrations.
Experiment with your image to get the result you want. See the documentation for the functions we referenced.
SHIREESHA THADKAPALLY,did you find the answer?

Sign in to comment.

Categories

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

Asked:

on 23 Mar 2018

Commented:

on 23 May 2018

Community Treasure Hunt

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

Start Hunting!