代码搜索结果
找到约 8,819 项符合
RGB 的代码
yuv_to_rgb.m
%%%%%%%%%%%定义常量%%%%%%%%%%%%%%%%%%%%%%%
% y=zeros(64,64); u=zeros(64,64); v=zeros(64,64);
% r=[]; g=[]; b=[];
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SVQ = fopen('data.txt','r');
yuv
rgb-hsi.m
clc;
close all;
clear all;
[O,map]=imread('model.jpg','jpg');
imshow(O),colormap(map);title('original image');
rgb_r=O(:,:,1);
rgb_g=O(:,:,2);
rgb_b=O(:,:,3);
[M,N]=size(rgb_r);
hsi=zeros
image_rgb.m
function image_rgb(M)
% Show a matrix of integers as a color image.
% This is like imagesc, except we know what the mapping is from integer to color.
% If entries of M contain integers in {1,2,3}, we
mga_rgb.c
/* (c) HelDoRe
SGI RGB unit ... v0.0.4
24 bpp
24 bpp RLE
8 bpp GRAY
8 bpp GRAY RLE
*/
#define VERRGB " unit v0.0.4"
#include
#include "../mga_view.h"
void help_rgb()