File:Lichtenstein bitplanes.png
From Wikipedia, the free encyclopedia
Jump to navigation
Jump to search
Size of this preview: 799 × 322 pixels. Other resolutions: 320 × 129 pixels | 640 × 258 pixels | 1,330 × 536 pixels.
Original file (1,330 × 536 pixels, file size: 103 KB, MIME type: image/png)
This file is from Wikimedia Commons and may be used by other projects. The description on its file description page there is shown below.
Summary
| DescriptionLichtenstein bitplanes.png |
the grayscale picture on the left is the original image, the 8 binary images on the right are the bit-planes of the original one. They are 8 because the input has 8 bit/pixel. I have created them in the following way. first I have used the Image:Lichtenstein img processing test.png test image, saving it on my harddisk as "castle.png". Then I have used the following Matlab code: clear all
% read image
img=imread('castle.png');
% convert it to grayscale
img=rgb2gray(img);
img=imresize(img,0.5,'bicubic');
[x,y]=size(img);
bitplanes=zeros(x,y,8);
for i=1:x
for j=1:y
binary=de2bi(img(i,j),8,'left-msb');
for k=1:8
bitplanes(i,j,k)=binary(k);
end
end
end
imwrite(img,'original.png'); % original grayscale image
imwrite(bitplanes(:,:,1),'bit1.png'); % MSB
imwrite(bitplanes(:,:,2),'bit2.png');
imwrite(bitplanes(:,:,3),'bit3.png');
imwrite(bitplanes(:,:,4),'bit4.png');
imwrite(bitplanes(:,:,5),'bit5.png');
imwrite(bitplanes(:,:,6),'bit6.png');
imwrite(bitplanes(:,:,7),'bit7.png');
imwrite(bitplanes(:,:,8),'bit8.png'); % LSB
then I put them all together using GIMP. I have optimized the PNG using optipng. |
| Date | |
| Source | Own work |
| Author | Alessio Damato |
| Other versions |
|
Licensing
I, the copyright holder of this work, hereby publish it under the following licenses:
| Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
| This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. | ||
| ||
| This licensing tag was added to this file as part of the GFDL licensing update.http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue |
This file is licensed under the Creative Commons Attribution-Share Alike 2.5 Generic, 2.0 Generic and 1.0 Generic license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
You may select the license of your choice.
Captions
Add a one-line explanation of what this file represents
Items portrayed in this file
depicts
some value
June 2007
105,812 byte
536 pixel
1,330 pixel
image/png
3a1b2ced78786c6aee246761ac6768fca72b2c97
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 17:02, 4 June 2007 | 1,330 × 536 (103 KB) | wikimediacommons>Alejo2083 |
File usage
The following page uses this file:
Retrieved from "https://wiki.sarg.dev/index.php/File:Lichtenstein_bitplanes.png"
