代码搜索结果
找到约 8,819 项符合
RGB 的代码
11.m
blook=imread('D:work\work.jpg');
blood=rgb2gray(blook);
[x,y]=size(blood);
b=double(blood);
N=sqrt(100)*randn(x,y);
I=b+N;
for i=1:x
for j=1:y
if(I(i,j)>255)I(i,j)=255;
en
主程序.prg
_SCREEN.WINDOWSTATE=2
_SCREEN.CAPTION="学籍信息管理系统 "
_SCREEN.CLOSABLE=.F.
_SCREEN.CONTROLBOX=.F.
_SCREEN.MAXBUTTON=.F.
_SCREEN.MINBUTTON=.F.
_SCREEN.BACKCOLOR=RGB(50,100,128)
CLOSE ALL
CLEAR ALL
one1.js
document.writeln('
tft
#!/bin/bash
#
# RCSID $Id: tft,v 1.4 2002/04/24 07:36:18 mcr Exp $
#
# This script is OBSOLETE -- rgb, May 6th, 1998
insmod ipsec.o
tncfg attach ipsec0 eth2
ifconfig ipsec0 10.2.0.143 up netmask 255.
ttn
#!/bin/bash
#
# RCSID $Id: ttn,v 1.4 2002/04/24 07:36:18 mcr Exp $
#
# This script is OBSOLETE -- rgb, May 6th, 1998
set +v
insmod ipsec.o
tncfg attach ipsec0 eth2
ifconfig ipsec0 10.2.0.143 up netmas
ttn
#!/bin/bash
#
# RCSID $Id: ttn,v 1.1.1.1 2002/09/05 03:13:18 ken Exp $
#
# This script is OBSOLETE -- rgb, May 6th, 1998
set +v
insmod ipsec.o
tncfg attach ipsec0 eth2
ifconfig ipsec0 10.2.0.143 up ne
inpaint.m
clf
colormap(gray)
I = zeros(100,200);
I(40:60,50:150)=255;
I=255-I;
%I = imresize(double(rgb2gray(imread('bar4.jpg')))/255,0.4);
M = logical(roipoly(I));
%M = logical(zeros(50,50)); M
pinyuzengqiang.m
clc
%[I,map]=imread('cameraman.tif');
[I,map]=imread('wen.jpg');
%I=rgb2gray(I1);
%[I,map]=imread('37_3.bmp');
noisy=imnoise(I,'gaussian',0.01);
imshow(noisy,map);
[M N]=size(I);
F=fft2(doub
lfsrchengxu.m
tic
I11=imread('lena.bmp');
%I1=rgb2gray(I);
size_obj=size(I11); % size_obj为目标图像矩阵的大小
%figure(1),imshow(I1);
I1=I11(:);
baofen.m
kk=imread('ziji5.jpg');
b=rgb2gray(kk);
b=double(b);
figure();
t=wpdec2(b,2,'db2');
cfs=wpcoef(t,[1 0]);
subplot(211);
imshow(b,[]);
title('原始图像');
subplot(212);
imshow(cfs,[]);
title('分解后图