代码搜索:RGB
找到约 8,819 项符合「RGB」的源代码
代码结果 8,819
www.eeworm.com/read/418078/10966188
txt 使用说明.txt
在这个文件夹里,收集了一些颜色布局比较科学或较有特色的256色调色板文件。
你可以通过 Photoshop 将其抖动匹配到各种位图图片,
与同一个调色板文件抖动匹配过的位图图片都是基于该调色板的,
这在8位(256色)图形模式下是一件非常美妙的事情——熟悉256色模式的朋友都知道:
由于不同256色位图都带有独自的调色板,导致了这种图形模式的一个弊病,
就是当你显示位图时,当之前一张 ...
www.eeworm.com/read/271157/11005126
m p0210.m
I=imread('Plane211.jpg');
I2=rgb2gray(I);
imshow(I);
figure,imshow(I2);
figure,subplot(1,2,1),imshow(I);
subplot(1,2,2),imshow(I2);
www.eeworm.com/read/270851/11024055
txt color.txt
淡绿色:rgb(192,220,192)
cream:rgb(255,251,240)
淡兰色:rgb(166,202,240)
深兰色:rgb(0,0,128)
血红色:rgb(128,0,0)
www.eeworm.com/read/416433/11025588
cpp gnometheme.cpp
// GnomeTheme.cpp: implementation of the CGnomeTheme class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "GUI_Gnome.h"
#include "GnomeT
www.eeworm.com/read/416403/11030982
m derterd.m
RGB = imread('tape.png'); %读取图片,数据存在RGB变量中;
I = rgb2gray(RGB); %将RGB转换为灰度图像数据;
threshold = graythresh(I); %获取灰度图像转换时的阈值;
BW = im2bw(I,threshold);
www.eeworm.com/read/470471/6911393
m ex1.m
I = imread('chrimage.bmp');
figure,imshow(I);
I2 = rgb2gray(I);
s = size(I2);
I4 = 255*ones(s(1), s(2), 'uint8');
I5 = imsubtract(I4,I2);
I3 = medfilt2(I5,[5 5]);
I3 = imadjust(I3);
bw = im2bw
www.eeworm.com/read/469046/6984265
m 13-12.m
RGB = imread('flowers.tif');
subplot(221),imshow(RGB)
title('原始真彩色图像')
subplot(222),imshow(RGB(:,:,1))
title('真彩色图像红色分量')
subplot(223),imshow(RGB(:,:,2))
title('真彩色图像绿色分量')
subplot(224),imshow(
www.eeworm.com/read/467684/6999997
css webfxapi.css
/* This style sheet is used for WebFX Api pages */
a.helpLink,
a.helpLink:hover {
color: rgb(0,66,174);
border-bottom-color:rgb(0,66,174);
}
.help-tooltip {
width: auto;
}
.help-tooltip