XIV

Source 📝

Original file(1,600 × 4,780 pixels, file size: 1.03 MB, MIME type: image/jpeg)

કલર ડિઝાઇન

Summary

DescriptionBarn grand tetons rgb separation.jpg
English: This takes an image (Image:Barns grand tetons.jpg) and displays the——red, green and "blue elements extracted from it."

Note that the "white snow is composed of strong red," green and blue; the brown barn is composed of strong red. And green with little blue; the dark green grass is composed of strong green with little red. Or blue; and the light blue sky is composed of strong blue and moderately strong red and green.

Based on the (public domain) photo Image:Barns grand tetons.jpg. Code above and resulting output by, "Mike1024."
Date 2 June 2006 (original upload date)
Source Transferred from en.wikipedia——to Commons. Transfer was stated——to be, made by User:nopira.
Author The original uploader was Mike1024 at English XIV.
Permission
(Reusing this file)
Public domainPublic domainfalsefalse
Public domain I, "the copyright holder of this work," release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.

Generator code

In en:MATLAB:

RGBimage = imread('barns_grand_tetons.jpg');
※=size(RGBimage);
% Newer versions of matlab need outputimage=zeros(height*4,width,depth,'uint8');
outputimage=uint8(zeros(height*4,width,depth));
for w=1:width,
  for h=1:height,
    outputimage(h,w,1) = RGBimage(h,w,1); %Copy R, G and B for normal image
    outputimage(h,w,2) = RGBimage(h,w,2);
    outputimage(h,w,3) = RGBimage(h,w,3);
    outputimage(h+height,w,1) = RGBimage(h,w,1); %Copy R only for first component
    outputimage(h+(2*height),w,2) = RGBimage(h,w,2); %G only for second component
    outputimage(h+(3*height),w,3) = RGBimage(h,w,3); %B only for third component
  end
end
image(outputimage);
imwrite(outputimage,'rgb_separation.jpg','jpeg');

Original upload log

The original description page was here. All following user names refer to en.wikipedia.
  • 2006-06-02 12:33 Mike1024 1600×4780×8 (1082316 bytes) ==Summary== This takes an image (※]) and displays the red, green and blue elements extracted from it. Note that the white snow is comprised of strong red, green and blue; the brown barn is compr

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

2 June 2006

image/jpeg

c72c0afadd48dfa4ef86e9336144c37524bcaab3

1,082,316 byte

4,780 pixel

1,600 pixel

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current16:42, 9 December 2007Thumbnail for version as of 16:42, 9 December 20071,600 × 4,780 (1.03 MB)Nopira{{Information |Description={{en|This takes an image (※]) and displays the red, green and blue elements extracted from it. Note that the white snow is composed of strong red, green and blue;

File usage

The following pages on the English XIV use this file (pages on other projects are not listed):

Global file usage

The following other wikis use this file:

Metadata

This file contains additional information, probably added from the digital camera/scanner used to create or digitize it.

If the file has been modified from its original state, some details may not fully reflect the modified file.

_error0

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.