Filter löschen
Filter löschen

8-bit plane slicing for an image

4 Ansichten (letzte 30 Tage)
Polana sai kishore
Polana sai kishore am 5 Jan. 2012
Kommentiert: Husain Kapadia am 19 Feb. 2016
convert an image into 8 bit plane images by taking corresponding bit values at each pixel....of the image..
i tried but i dint get the correct program
convert each value exp- 64...the bcd value 0110 0100..like this for every pixel has 8 bit bcd value..and we need to group each level bits as one new image for example all msbs or all lsb bits..
  1 Kommentar
Sean de Wolski
Sean de Wolski am 5 Jan. 2012
Can you provide a small example set of data, the operation you wish to perform, and the result?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

David Young
David Young am 5 Jan. 2012
You should be able to simply use bitget, as in
im = imread('pout.tif');
bit1 = bitget(im, 1); % lsb for example
imshow(bit1, [])
  1 Kommentar
Husain Kapadia
Husain Kapadia am 19 Feb. 2016
Can we perform bit-plane slicing without using the function bitget ?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu FPGA, ASIC, and SoC Development finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by