代码搜索结果
找到约 8,819 项符合
RGB 的代码
example4_9.m
RGB1=imread('pic005.jpg');
RGB2=imread('pic007.jpg');
I1=imread('rice.tif');
I2=imread('testpat1.tif');
subplot(2,2,1); %将图形窗口等分成4部分
subimage([0,500],[0,500],RGB1);
subplot(2,2,2);
subimage([
ex620.m
%********************************************************
%程序:EX620.M
%功能:利用warp函数将一幅真彩图像映射到球面上
%********************************************************
RGB=imread('leaf.jpg'); %将图像格式文件读入为MAT
ex623.m
%********************************************************
%程序:EX623.M
%功能:把一幅真彩图像转换为一个NTSC模型空间对应的图像
%********************************************************
RGB=imread('pic001.jpg'); %将图像格式文件读入
ex624.m
%********************************************************
%程序:EX624.M
%功能:把一幅真彩色图像转换为一个YCbCr模型空间对应的图像
%********************************************************
RGB=imread('pic001.jpg'); %将图像格式文
program_01_03.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');
%转换为索引图
about.cpp
//////////////////////////////////////////////////////////////////////////////
//类名:About
//功能:"关于"对话框
//作者:徐景周(jingzhou_xu@163.net)
//组织:未来工作室(Future Studio)
//日期:2002.12.10
///////////////////
form1.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3975
ClientLeft = 60
ClientTop = 345
ClientWidth = 5700
FillColor
form1.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 5490
ClientLeft = 60
ClientTop = 450
ClientWidth = 10095
LinkTopic
sendmsg.cpp
// SendMsg.cpp : implementation file
//
#include "stdafx.h"
#include "qqclient.h"
#include "SendMsg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE
linux设备驱动程序学习(0)-hello, world!模块 - linux设备驱动程序 - tekkaman ninja.htm
Linux设备驱动程序学习(0)-Hello, world