ファイル:Barn grand tetons rgb separation.jpg

ページのコンテンツが他言語でサポートされていません。

元のファイル(1,600 × 4,780 ピクセル、ファイルサイズ: 1.03メガバイト、MIME タイプ: image/jpeg)

કલર ડિઝાઇન

概要

解説
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.
日付 2006年6月2日 (当初のアップロード日)
原典 en.wikipedia からコモンズに移動されました。 Transfer was stated to be made by User:nopira.
作者 オリジナルのアップロード者は英語版ウィキペディアMike1024さん
許可
(ファイルの再利用)
Public domain この著作物の著作権者である私は、この著作物における権利を放棄しパブリックドメインとします。これは全世界で適用されます。
一部の国では、これが法的に可能ではない場合があります。その場合は、次のように宣言します。
私は、あらゆる人に対して、法により必要とされている条件を除き、如何なる条件も課すことなく、あらゆる目的のためにこの著作物を使用する権利を与えます。

Generator code

In en:MATLAB:

RGBimage = imread('barns_grand_tetons.jpg');
[height,width,depth]=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');

元のアップロードログ

元のファイルページはこちら。以下の利用者は全てen.wikipediaに属します。
  • 2006-06-02 12:33 Mike1024 1600×4780×8 (1082316 bytes) ==Summary== This takes an image ([[:Image:Barns grand tetons.jpg|Image:Barns grand tetons.jpg]]) 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

キャプション

このファイルの内容を1行で記述してください

このファイルに描写されている項目

題材

2 6 2006

c72c0afadd48dfa4ef86e9336144c37524bcaab3

1,082,316 バイト

4,780 ピクセル

1,600 ピクセル

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2007年12月9日 (日) 16:422007年12月9日 (日) 16:42時点における版のサムネイル1,600 × 4,780 (1.03メガバイト)Nopira{{Information |Description={{en|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;

以下のページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています:

メタデータ