Filter löschen
Filter löschen

How to get the pixel values of an image in binary form?

2 Ansichten (letzte 30 Tage)
Bala
Bala am 27 Mär. 2013
for example, if an image is
3 7
2 5
then i want like this
00000011 00000111
00000010 00000101
then i want like this
0000001100000111
0000001000000101
then i want to do process on this matrix, i may get like this,
0000100000000100
0000001000000001
from this i want to split like ths,
00001000 00000100
00000010 00000001
then i want to get like this,
8 4
2 1

Antworten (1)

Doug Hull
Doug Hull am 27 Mär. 2013
This will give you the binary as strings that can easily be concatenated.
  2 Kommentare
Bala
Bala am 27 Mär. 2013
Thank u sir,i have already tried like this but in the reverse process I'm facing problem.
Image Analyst
Image Analyst am 27 Mär. 2013
reversedString = originalString(end:-1:1)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by