Файл:Barns grand tetons YCbCr separation.jpg

Змест старонкі недаступны на іншых мовах.
З Вікіпедыі, свабоднай энцыклапедыі

Арыгінальны файл(1 600 × 4 780 кропак, аб’ём файла: 825 KB, тып MIME: image/jpeg)

Гэты файл з на Вікісховішчы і можа выкарыстоўвацца іншымі праектамі. Апісанне на яго старонцы ў Wikimedia Commons прыведзена ніжэй.

Тлумачэнне

Апісанне
English: This takes an image (Image:Barns grand tetons.jpg) and displays the Y, Cb and Cr elements of it. Note that the Y image is essentailly a greyscale copy of the main image; that the white snow is represented as a middle value in both Cb and Cr; that the brown barn is represented by strong Cb and strong Cr; that the green grass is represented by strong Cb and weak Cr; and that the blue sky is represented by weak Cb and weak Cr. The murkiness of the Cb and Cr elements (to the human eye) demonstrate why many image compression codecs downsample colour; details in Y are much more visible than in Cb or Cr.
Дата 26 снежня 2006 (upload date)
Крыніца Based on the (public domain) photo Image:Barns grand tetons.jpg. Code above and resulting output by Mike1024.
Аўтар Mike1024
Дазвол
(Паўторнае выкарыстанне гэтага файла)
Public domain Я, уладальнік аўтарскіх правоў на гэты твор, перадаю яго ў грамадскі набытак. Дазвол сапраўдны для ўсяго свету.
У некаторых краінах гэта не можа быць юрыдычна магчыма; калі так, то:
Я дазваляю кожнаму выкарыстоўваць гэтую працу ў любых мэтах, без аніякіх умоваў, калі толькі такія ўмовы не патрабуюцца паводле закону.

Generator code

In MATLAB:

RGBimage = imread('barns_grand_tetons.jpg');
[height,width,depth]=size(RGBimage);
YCbCrimage=RGB2YCbCr(RGBimage); % If you don't have the right version/toolkit this function 
                                % might not be availiable. Luckily, it's easy to implement 
                                % ourselves. Drop me (Mike1024) a message and I'll send you 
                                % my code to do it.

% 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) = YCbCrimage(h,w,1); %Copy Y, Cb and Cr for normal image
    outputimage(h,w,2) = YCbCrimage(h,w,2);
    outputimage(h,w,3) = YCbCrimage(h,w,3);
    outputimage(h+height,w,1) = YCbCrimage(h,w,1); %Copy Y only for first component
    outputimage(h+height,w,2) = 128;
    outputimage(h+height,w,3) = 128;
    outputimage(h+(2*height),w,2) = YCbCrimage(h,w,2); %Cb only for second component
    outputimage(h+(2*height),w,1) = 128;
    outputimage(h+(2*height),w,3) = 128;
    outputimage(h+(3*height),w,3) = YCbCrimage(h,w,3); %Cr only for third component
    outputimage(h+(3*height),w,1) = 128;
    outputimage(h+(3*height),w,2) = 128;
  end
end

image(YCbCr2RGB(outputimage));
imwrite(YCbCr2RGB(outputimage),'YCbCr_separation.jpg','jpeg');

Назвы

Апішыце ў адным радку, што ўяўляе сабой гэты файл

Элементы, адлюстраваныя на гэтым файле

адлюстроўвае

image/jpeg

checksum англійская

fb1e6384f89b9a5b3e8bebcd3065c2817b00a1b5

метад вызначэння: SHA-1 англійская

844 403 байт

4 780 піксель

1 600 піксель

Гісторыя файла

Націснуць на даце з часам, каб паказаць файл, якім ён тады быў.

Дата і часДрабніцаПамерыУдзельнікТлумачэнне
актуальн.13:58, 26 снежня 2006Драбніца версіі з 13:58, 26 снежня 20061 600 × 4 780 (825 KB)Wdwd==Summary== This takes an image (Image:Barns grand tetons.jpg) and displays the Y, Cb and Cr elements of it. Note that the Y image is essentailly a greyscale copy of the main image; that the white snow is represented as

Наступная 1 старонка выкарыстоўвае гэты файл:

Глабальнае выкарыстанне файла

Гэты файл выкарыстоўваецца ў наступных вікі:

Метаданыя