代码搜索结果
找到约 8,819 项符合
RGB 的代码
test2a.uil
! test2a.uil
!
! This test tries to demonstrate :
! - how exported and imported values work
! - literals
!
module test2a
names = case_sensitive
value
green : exported rgb(0,65535,0);
n : exported
test2a.uil
! test2a.uil
!
! This test tries to demonstrate :
! - how exported and imported values work
! - literals
!
module test2a
names = case_sensitive
value
green : exported rgb(0,65535,0);
n : exported
color.java
package java.awt;
/**
* Color - class to represent 8-8-8 RGB color values
*
* Copyright (c) 1998
* Transvirtual Technologies Inc. All rights reserved.
*
* See the file "license.terms" for i
example_figure.m
%bp3_figure:to look the figure of input&output
%==============
%==============
[name,path]=uigetfile('*.bmp');
pathname=strcat(path,name);
I=imread(pathname);
b=rgb2gray(I);
b1=imnoise(b,
example57_1.m
figure('name','简单的形状识别','numbertitle','off');
clc;
%%%%%%%%%%%%%%%%%%%%%%%%%%%
a=imread('example57Re1.bmp');
p=rgb2gray(a);
for i=1:128
for j=1:128
if p(i,j)>130
example57_3.m
figure('name','简单的形状识别','numbertitle','off');
clc;
%%%%%%%%%%%%%%%%%%%%%%%%%%%
a=imread('example57Re3.bmp');
p=rgb2gray(a);
for i=1:128
for j=1:128
if p(i,j)>130
example35_figure.m
%bp3_figure:to look the figure of input&output
%==============
%==============
[name,path]=uigetfile('*.bmp');
pathname=strcat(path,name);
I=imread(pathname);
b=rgb2gray(I);
b1=imnoise(b,
example57_2.m
figure('name','简单的形状识别','numbertitle','off');
clc;
%%%%%%%%%%%%%%%%%%%%%%%%%%%
a=imread('example57Re2.bmp');
p=rgb2gray(a);
for i=1:128
for j=1:128
if p(i,j)>130
图像差影法代码[matlab].txt
程序代码: (代码标记 [code]...[/code] )
%%%%%%%%%%%%%%%%%%%%%%%%定义祛除背景的函数%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function chayingfa = chayingfa(i);
figure;
imshow(i);
title('原图显示')
I=rgb2gray(i);%灰度转化
figure;