代码搜索结果

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

statlink.cpp

#include "StdAfx.h" #include "StatLink.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif COLORREF CStaticLink::g_colorUnvisited = RGB(0,0,25

gnuplot.cmd

set xrange [0:100] set yrange [0:100] unset mouse set title 'The set of raw points in the set' font 'Arial,12' set style line 1 pointtype 7 linecolor rgb 'red' set style line 2 pointtype 7 lineco

gnuplot.cmd

set xrange [0:100] set yrange [0:100] unset mouse set title 'The set of raw points in the set' font 'Arial,12' set style line 1 pointtype 7 linecolor rgb 'red' set style line 2 pointtype 7 lineco

untitled2.m

%function [ output_args ] = Untitled2( input_args ) %UNTITLED2 Summary of this function goes here % Detailed explanation goes here load chess A=imread('C:\WINDOWS\ACD Wallpaper.bmp') I=rgb2gray(A);

statlink.cpp

#include "StdAfx.h" #include "StatLink.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif COLORREF CStaticLink::g_colorUnvisited = RGB(0,0,25

builddatabase.m

function BuildDatabase(imagedir); info = imfinfo(strcat(imagedir,'0001.bmp'),'bmp'); load('wavelet.dat','-mat'); %a=columns(W); %建库; step=1; for num=1:1 %读图;得到I; I = rgb2gray(imread(st

gui.asm

RGB macro red,green,blue xor eax,eax mov ah,blue shl eax,8 mov ah,green mov al,red endm .const WM_FINISH equ WM_USER+100h WM_SHELLNOTIFY equ

statlink.cpp

#include "StdAfx.h" #include "StatLink.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif COLORREF CStaticLink::g_colorUnvisited = RGB(0,0,25

statlink.cpp

#include "StdAfx.h" #include "StatLink.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif COLORREF CStaticLink::g_colorUnvisited = RGB(0,0,25

func_main4.m

%----------- Input ---------------- Orig_I1=rgb2gray(imread('new3.bmp')); Orig_I = double(Orig_I1) / 256; figure,imshow(Orig_I);title('原来图像');axis on; %----------- Pre-processing -------