代码搜索结果
找到约 5,749 项符合
RGB 的代码
image.h
// image.h -- Thatcher Ulrich 2002
// This source code has been donated to the Public Domain. Do
// whatever you want with it.
// Handy image utilities for RGB surfaces.
#ifndef I
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')
2403.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (目标 1), 0x0000 // Tools: 'MCS-51'
Group (源代码组 1)
File 1,1, 0x0
Options 1,0,0 // Target '目标
2403.lnp
"2403 RGB.obj"
TO "2403"
global.h
#include "stdafx.h"
#define CLR_RED RGB(255, 0, 0)
#define CLR_GREEN RGB( 0,255, 0)
#define CLR_BLUE RGB( 0, 0,255)
#define CLR_BLACK RGB( 0, 0, 0)
ex406.m
%********************************************************
%程序:EX406.M
%功能:RGB真彩着色使用实例
%********************************************************
[x,y]=meshgrid(-1:0.2:1); %设置矩形网格
z=x.^2+sin(y*pi
ex622.m
%********************************************************
%程序:EX622.M
%功能:把一幅真彩图像转换为一个HSV模型空间对应的图像
%********************************************************
RGB=imread('pic001.jpg'); %将图像格式文件读入为M
ex620.m
%********************************************************
%程序:EX620.M
%功能:利用warp函数将一幅真彩图像映射到球面上
%********************************************************
RGB=imread('leaf.jpg'); %将图像格式文件读入为MAT
ex603.m
%********************************************************
%EX603.M
%功能:RGB图像显示
%********************************************************
RGB=imread('leaf.jpg'); %将图像格式文件读入为MATLAB图像对象数组数据
imag
ex623.m
%********************************************************
%程序:EX623.M
%功能:把一幅真彩图像转换为一个NTSC模型空间对应的图像
%********************************************************
RGB=imread('pic001.jpg'); %将图像格式文件读入