代码搜索:图像捕捉
找到约 10,000 项符合「图像捕捉」的源代码
代码结果 10,000
www.eeworm.com/read/369630/9637623
txt matlab3.txt
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'position',[0.25 0.45 0.5 0.5],...
'visible','off');
I=imre
www.eeworm.com/read/367744/9734656
txt matlab实用程序百例3.txt
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'position',[0.25 0.45 0.5 0.5],...
'visible','off');
I=imre
www.eeworm.com/read/415449/11072762
m sourceread.m
%SourceRead.m
%作者:韦海萍;
%日期:2007-8-8;
%用途:根据给定的文件名,将图像写到矩阵中;
function [err,ImageOut] =SourceRead(str,Height, Width, FileFormat, Xlabel, Ylabel)
%------------for test----------------------------
www.eeworm.com/read/414031/11132999
cpp gamemap.cpp
#include "stdafx.h"
#include "gamemap.h"
#include "myclock.h"
#include "tool01.h"
#include "texttool.h"
extern int wwin,hwin;
extern HWND hWndMain;
//基本图像
extern MYANIOBJ bmMap;
//天空背景
www.eeworm.com/read/267126/11192807
txt matlab实用程序百例3.txt
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'position',[0.25 0.45 0.5 0.5],...
'visible','off');
I=imre
www.eeworm.com/read/265649/11258694
txt matlab实用程序百例3.txt
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'position',[0.25 0.45 0.5 0.5],...
'visible','off');
I=imre
www.eeworm.com/read/249868/12465069
m 16-12.m
BW = imread('circbw.tif');
imshow(BW)
SE = ones(5);
BW2 = imdilate(BW,SE);
%图像膨胀
figure,imshow(BW2)
increase = (bwarea(BW2) - bwarea(BW))/bwarea(BW)
%面积扩大的比率
www.eeworm.com/read/249868/12465407
m 13-5.m
I = imread('tire.tif');
hgram=50:2:250;
%规定化函数
J = histeq(I,hgram);
imshow(J)
title('直方图规定化所得图像')
figure,imhist(J,64)
title('直方图规定化变换后的直方图')
www.eeworm.com/read/249086/12521332
txt matlab实用程序百例3.txt
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'position',[0.25 0.45 0.5 0.5],...
'visible','off');
I=imre
www.eeworm.com/read/249071/12523206
c project.c
// Ex8
// 水平投影与图像颜色反转
#include
#include "image32.h"
extern HDC hMemDC;
extern struct IMAGE *image;
extern struct IMAGE *Image[10];
void ImageCopy(int m,int n);