代码搜索:图像捕捉
找到约 10,000 项符合「图像捕捉」的源代码
代码结果 10,000
www.eeworm.com/read/352274/10567761
m zz2.m
r=[0:1/255:1]';
g=[0:1/255:1]';
b=[0:1/255:1]';
map=[r g b];
hf_2=figure('colormap',map);
set(hf_2,'menubar','none',...
'name','图像处理系统',...
'color',[.6 .7 .8],...
'n
www.eeworm.com/read/352274/10568232
m zz3.m
r=[0:1/255:1]';
g=[0:1/255:1]';
b=[0:1/255:1]';
map=[r g b];
hf_2=figure('colormap',map);
set(hf_2,'menubar','none',...
'name','图像处理系统',...
'color',[.6 .7 .8],...
'n
www.eeworm.com/read/352274/10568883
m zz4.m
r=[0:1/255:1]';
g=[0:1/255:1]';
b=[0:1/255:1]';
map=[r g b];
hf_2=figure('colormap',map);
set(hf_2,'menubar','none',...
'name','图像处理系统',...
'color',[.6 .7 .8],...
'n
www.eeworm.com/read/277473/10633206
txt 读取bmp文件的c++程序.txt
读取的文件是cameraman.bmp黑白图像,256×256×256色的。
#include
#include
using namespace std;
typedef unsigned char var8;
typedef unsigned int uvar32;
typedef unsigned short int uvar16;
www.eeworm.com/read/276855/10701116
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的C
www.eeworm.com/read/416443/11025117
m gabpdemo.m
%图像分割示例程序
function retstr = gabpdemo()
NNTWARN OFF
retstr=-1;
%用于产生样本文件
generatesample('data\sample.mat');
%遗传神经网络训练示例
gaP = [100 0.00001];
bpP = [500 0.00001];
load('data\sample.mat');
gabptrain
www.eeworm.com/read/469936/6921203
m yuanchengxu.m
clear all
IY=imread('cameraman.bmp');
I=im2bw(IY,0.35);
[zipped,info]=Xingchengbianma(I);
unzipped=Xingchengjiema(zipped,info);
subplot(1,3,1),imshow(IY),title('原始灰度图像');
subplot(1,3,2),imshow(I