代码搜索:RGB

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

代码结果 8,819
www.eeworm.com/read/490722/6452075

m ex406.m

%******************************************************** %程序:EX406.M %功能:RGB真彩着色使用实例 %******************************************************** [x,y]=meshgrid(-1:0.2:1); %设置矩形网格 z=x.^2+sin(y*pi
www.eeworm.com/read/482937/6616512

htm linux设备驱动程序学习(1)-字符设备驱动程序 - linux设备驱动程序 - tekkaman ninja.htm

Linux设备驱动程序学习(1)-字符设备驱动程序 - L
www.eeworm.com/read/482938/6616536

htm linux设备驱动程序学习(2)-调试技术 - linux设备驱动程序 - tekkaman ninja.htm

Linux设备驱动程序学习(2)-调试技术 - Linux
www.eeworm.com/read/482948/6616735

htm linux设备驱动程序学习(10)-时间、延迟及延缓操作 - linux设备驱动程序 - tekkaman ninja.htm

Linux设备驱动程序学习(10)-时间、延迟及延缓操作
www.eeworm.com/read/479786/6678671

c gtkpreview.c

/* * * Sample Code for Gtk+ Programming in C, 1st Edition, Prentice Hall * * Copyright 2000 - 2002 Syd Logan, All Rights Reserved * * This code is distributed without warranty. You are free to u
www.eeworm.com/read/479666/6684696

m projson.m

clc; clear all; close all; I= imread('proj1lab1.jpg'); I1=rgb2gray(I); I1=I1(5:115,5:171); I2=double(I1); I3 = imread('proj1lab2.jpg'); I4=rgb2gray(I3); I4=I4(5:115,5:171); I5=double(I4);
www.eeworm.com/read/478404/6716646

cpp stringgridcolor.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop #include "StringGridColor.h" //--------------------------------------------------
www.eeworm.com/read/478181/6721178

cpp colorb~2.cpp

// colorBtnSampleDlg.cpp : implementation file // #include "stdafx.h" #include "colorBtnSample.h" #include "colorBtnSampleDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static
www.eeworm.com/read/477438/6735446

m s031.m

%rgb图像转换为ntsc图像,真彩显示 s031 I31=imread('1.jpg'); I310=rgb2ntsc(I31); I311=1-I310(:,:,1); I312=1-I310(:,:,2); I313=1-I310(:,:,3); subplot(3,3,1),imshow(cat(3,I310(:,:,1),I310(:,:,2),I310(:,:,3)));