代码搜索结果
找到约 5,749 项符合
RGB 的代码
color0.css
a:link
{
color: rgb(153,51,0);
}
a:visited
{
color: rgb(102,102,0);
}
a:active
{
color: rgb(204,51,0);
}
body
{
color: rgb(0,0,0);
background-color: rgb(255,255,255);
}
h1
{
c
color1.css
a:link
{
color: rgb(102,102,0);
}
a:visited
{
color: rgb(153,51,0);
}
a:active
{
color: rgb(204,51,0);
}
body
{
color: rgb(0,0,0);
background-color: rgb(255,255,204);
}
h1
{
c
css.asp
A:visited{TEXT-DECORATION: none}
A:active{TEXT-DECORATION: none}
A:hover{TEXT-DECORATION: underline overline}
A:link{text-decoration: none;}
.noBorder{BORDER-RIGHT: rgb(0,0,0) 1px solid;
style.css
/* CSS definition file containing sitestyle stylesheets */
BODY { background-color: rgb(255,255,255);}
A:active { color: rgb(0,0,0);}
A:link { color: rgb(51,51,0);}
A:hover { color: rgb(102,153
example4_8.m
RGB=imread('flowers.tif');
[x,y,z]=sphere; %定义球面
warp(x,y,z,RGB)
example4_12.m
RGB=imread('hr.jpg');
YCbCr=rgb2ycbcr(RGB);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subplot(1,2,2);
subimage(YCbCr);
title('变换后的图像');
example4_10.m
RGB=imread('hr.jpg');
HSV=rgb2hsv(RGB);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subimage(HSV);
title('变换后的图像');
example4_11.m
RGB=imread('hr.jpg');
YIQ=rgb2ntsc(RGB);
I=YIQ(:,:,1);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subimage(I);
title('变换后的图像');
example3_3.m
RGB=imread('flowers.tif');
image(RGB)
example5_3.m
%顶点坐标为(40 , 50) , (40 , 250),(240,50)和(240,250)。
RGB=imread('flowers.tif');
imshow(RGB);
RGB2=imcrop(RGB,[40,50,200,200]);
figure,imshow(RGB2);