代码搜索结果
找到约 8,819 项符合
RGB 的代码
main.prg
set talk off &&关闭对话模式
set safe off
set stat off
set dele on &&不处理已删除的记录
set cent on
set date to ansi
close all
RELEASE WINDOW 常用
if mod(day(date()),2)=0
_SCREEN.backcolor=rgb(80,180
main.bak
set talk off &&关闭对话模式
set safe off
set stat off
set dele on &&不处理已删除的记录
set cent on
set date to ansi
close all
RELEASE WINDOW 常用
if mod(day(date()),2)=0
_SCREEN.backcolor=rgb(80,180
main.prg
set talk off &&关闭对话模式
set safe off
set stat off
set dele on &&不处理已删除的记录
set cent on
set date to ansi
close all
RELEASE WINDOW 常用
if mod(day(date()),2)=0
_SCREEN.backcolor=rgb(80,180
main.bak
set talk off &&关闭对话模式
set safe off
set stat off
set dele on &&不处理已删除的记录
set cent on
set date to ansi
close all
RELEASE WINDOW 常用
if mod(day(date()),2)=0
_SCREEN.backcolor=rgb(80,180
myvariousstate.cpp
#include "stdafx.h"
#include "MyVariousState.h"
MyButton::MyButton()
{
//画边框
m_BoundryPen.CreatePen(PS_INSIDEFRAME|PS_SOLID,1,RGB(55, 98, 6));
//画四个边的线,当鼠标移到上面时则显示
abmloader.cpp
#include "stdafx.h"
#include "mmi.h"
#define ABMENC_BMP_FILE_BUFFER_SIZE (1024 * 1024) /* 1 MB input bitmap file size limit */
#define DRV_RGB_TO_HW(R,G,B) ( (U16)(((B)&0xf8)>>3)|(((G)
image_processing_quantize.m
clc;
close all;
clear all;
O=imread('model.jpg','jpg');
I=rgb2gray(O);
%I saves the gray information of image model.jpg
I_info=size(I);
M=I_info(1); %the width of the image
N=I_info(2); %t
facedetection.m
%%%%% 读取图片数据
i=imread('face8.jpg');
I=rgb2gray(i);
BW=im2bw(I);
figure,imshow(BW)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% 设置向量表
[n1 n2]=size(BW);
r=floor(n1/10);
c=
s020.m
%灰度图像转换为二值图像(默认门限) s020
I20=imread('1.jpg');
I200=rgb2gray(I20);
I201=im2bw(I200);
imshow(I201)
cruvedetect.asv
r=imread('cruve_test2.bmp');
I = rgb2gray(r);
figure,imshow(I),axis on;%原始图像
%hold on;
BBW=edge(I,'sobel');
%figure,imshow(BBW),axis on;%二值图像
J=double(I);
tArray=J(70:80,:);
[rr,cc]=size(tAr