代码搜索结果

找到约 8,819 项符合 RGB 的代码

test_device.txt

1.ekiga 2.mplayer: mplayer tv:// -tv driver=v4l2:width=640:height=480:fps=25:outfmt=rgb32:device=/dev/video0

dcrgb0.m

function res = rgb(n) % - utility program for selecting plot colors while (n>10) n = n - 10; end % build cell-array of colors to choose from: colors{1} = [0 0 1]; % blue colo

13-04.txt

% the example of functions csvread and csvwrite I_matlab = imread('D:\matlab.bmp'); % read in the image I_matlab = rgb2gray(I_matlab); % convert the image to gray image figure,subplot(

proj2_code.txt

I = imread('coins','bmp'); Ig = rgb2gray(I); E = edge(Ig,'canny',0.7); imshow(E); title('Result of Edge Detection'); F = zeros(size(E)); % initialize all the entries in the accumulator c

huedistance.m

% hueDistance - computes the distance in a simplified 2d color space. % % result = hueDistance(col_img,hueParams) % Computes the distance of each pixel of the % RGB image col_img in a 2d color s

13-04.txt

% the example of functions csvread and csvwrite I_matlab = imread('D:\matlab.bmp'); % read in the image I_matlab = rgb2gray(I_matlab); % convert the image to gray image figure,subplot(

demo.c

////////////////////////////////////////////// // 1.在程序中"break point"注释行语句上加软件断点 // 2.菜单view->graph->Image: // color space = RGB // Start Address -R Source = y //

代码16-2.txt

I=imread('sample2.jpg'); % 读入图像 X=rgb2gray(I); % 图像灰度转换 figure; % 新窗口 imshow(X); % 显示灰度图像 Y = fft2(X); %