how to convert grayscale image to binary matrix?

Réponses (1)

Star Strider
Star Strider le 23 Mar 2018

0 votes

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

6 commentaires

SHIREESHA THADKAPALLY
SHIREESHA THADKAPALLY le 23 Mar 2018
Modifié(e) : Image Analyst le 23 Mar 2018
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
Star Strider
Star Strider le 24 Mar 2018
Modifié(e) : Star Strider le 24 Mar 2018
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?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by