代码搜索结果
找到约 8,819 项符合
RGB 的代码
tiny veins
Marble
1178956649 0.02 inches
1447388022 63.000
1447392360 61.000
1447391855 60.000
1111843695 RGB: 34.1% 82.0% 87.1% (87 209 222)
1447388012 RGB: 16.1% 15.7% 15.7% (41 40 40)
1414098021 1
138
thick veins
Marble
1178956649 1.29 inches
1447388022 52.000
1447392360 73.000
1447391855 49.000
1111843695 RGB: 100.0% 89.4% 90.6% (255 228 231)
1447388012 RGB: 16.1% 15.7% 15.7% (41 40 40)
1414098021 1
1
pale marble
Marble
1178956649 0.06 inches
1447388022 68.000
1447392360 53.000
1447391855 85.000
1111843695 RGB: 85.9% 85.9% 85.9% (219 219 219)
1447388012 RGB: 58.4% 43.9% 0.0% (149 112 0)
1414098021 0
13
soft rosy marble
Marble
1178956649 0.07 inches
1447388022 50.000
1447392360 69.000
1447391855 46.000
1111843695 RGB: 97.3% 72.2% 77.6% (248 184 198)
1447388012 RGB: 0.0% 0.0% 0.0% (0 0 0)
1414098021 1
13829663
white granite
Marble
1178956649 0.21 inches
1447388022 63.000
1447392360 15.000
1447391855 71.000
1111843695 RGB: 100.0% 100.0% 100.0% (255 255 255)
1447388012 RGB: 0.0% 0.0% 0.0% (0 0 0)
1414098021 0
13829
blue marble
Marble
1178956649 0.10 inches
1447388022 82.000
1447392360 5.000
1447391855 100.000
1111843695 RGB: 81.2% 89.8% 91.4% (207 229 233)
1447388012 RGB: 22.0% 20.4% 28.6% (56 52 73)
1414098021 1
13
green marble
Marble
1178956649 0.33 inches
1447388022 100.000
1447392360 8.000
1447391855 88.000
1111843695 RGB: 41.6% 61.2% 51.8% (106 156 132)
1447388012 RGB: 13.3% 13.3% 13.3% (34 34 34)
1414098021 0
13
green fill
Cutout
1148347252 315.000
1148417134 0.11 inches
1466201192 0.15 inches
1332765556 100.000
1935963971 RGB: 0.0% 0.0% 0.0% (0 0 0)
1181491232 1718174256
1181500268 RGB: 0.0% 99.6% 23.1% (0 254 5
vedit.py
#! /usr/bin/env python
# Edit CMIF movies interactively -- copy one or more files to an output file
# XXX To do:
#
# - convert between formats (grey, rgb, rgb8, ...)
# - change size
# - cut out a g
quantize.txt
%读入指定途径的图像
rgb=imread('D:\MATLAB6p5\work\test.jpg');
%RGB转换为YUV,即YCbCr
yuv=rgb2ycbcr(rgb);
%将得到的YUV转换为可进行数学运算的double类型,原来为uint8 类型
yuv=double(yuv);
%分别提取其中的Y,U,V矩阵
y=yuv(:,:,1);
u=yuv(:,:,2);