代码搜索结果

找到约 5,749 项符合 RGB 的代码

rg_

RGB,n.三原色(Red 红,Green 绿,Blue 蓝)

f11_1.m

%原始索引图像 load trees %转换为灰度图像 I = ind2gray(X,map); figure(1) subplot(2,2,1); imshow(X,map) title('索引图像'); subplot(2,2,2); imshow(I) title('转换后的灰度图像'); %原始真彩图像 RGB = imread('peppers.png')

f11_1.m

%原始索引图像 load trees %转换为灰度图像 I = ind2gray(X,map); figure(1) subplot(2,2,1); imshow(X,map) title('索引图像'); subplot(2,2,2); imshow(I) title('转换后的灰度图像'); %原始真彩图像 RGB = imread('peppers.png')

rgb10to10_dummy.inc

-- rgb10to10_dummy.tdf, NO CONVERSION (so "dummy") of 10 bits RGB between -- "PDP convention" and "LCD convention" -- Age van Dalfsen (AvD), 20041210 FUNCTION RGB10to10 ( Rpdp[9..0], Gpdp[9..0

rgb10to10.inc

-- rgb10to10.inc, conversion of 10 bits RGB between -- "PDP convention" and "LCD convention" -- Age van Dalfsen (AvD), 20041210 FUNCTION RGB10to10 ( lvds_dvi_sel, Rpdp[9..0], Gpdp[9..0],

rgb.vhd

LIBRARY ieee ; USE ieee.std_logic_1164.ALL; USE ieee.std_logic_unsigned.ALL; ENTITY rgb IS PORT ( clk : IN std_logic; vcount : IN std_logic_vector(11 DOWNTO 0); hcount : IN std_logic_vector(10

seismic.m

function rgb = seismic(n); % seismic(n) creates a colormap, ranging from dark blue via white to dark %red. % % Nico Sneeuw % Munich, 31/08/94 if nargin == 0, n = size(get(gcf,'colormap'),1);

bmp2bin.txt

Version: 4.0 Beta Function: Convert Color BMP File to binary file for MC68VZ328 and DBx. Usage: bmp2bin - input

example4_10(将一副真彩图像转换为一个hsv模型空间对应的图像).m

RGB=imread('hr.jpg'); HSV=rgb2hsv(RGB); subplot(1,2,1); subimage(RGB); title('原图像'); subplot(1,2,2); subimage(HSV); title('变换后的图像');