代码搜索:图像捕捉

找到约 10,000 项符合「图像捕捉」的源代码

代码结果 10,000
www.eeworm.com/read/136571/5868258

c readpic.c

/* readpic.c, 读取源图像*/ #include #include #include "config.h" #include "global.h" /* private prototypes */ static void read_y_u_v _ANSI_ARGS_((char *fname, unsigned char *frame[]
www.eeworm.com/read/110972/6160754

c store.c

/* store.c, 图像输出程序*/ #include #include #include #include "config.h" #include "global.h" /* private prototypes */ static void store_one _ANSI_ARGS_((char *outname, un
www.eeworm.com/read/110972/6160794

c readpic.c

/* readpic.c, 读取源图像*/ #include #include #include "config.h" #include "global.h" /* private prototypes */ static void read_y_u_v _ANSI_ARGS_((char *fname, unsigned char *frame[]
www.eeworm.com/read/103629/6213648

java splashdemo.java

//SplashDemo.java //用Window组件来制作快闪屏窗口 import java.awt.*; //import java.awt.event.*; public class SplashDemo extends Frame { //frame的构造方法 public SplashDemo() { //获取快闪屏所需的图像
www.eeworm.com/read/494102/6388219

java bubblemanager.java

import java.awt.*; import java.util.Random; //泡泡管理器 public class BubbleManager { int bubblesLeft;//目前总共泡泡的个数 Image[] bubbles;//所有泡泡对应的图像 int[] countBubbles;//每个泡泡对应的个数 public Bubble
www.eeworm.com/read/492695/6419470

m example36_hough.m

%example36_Hough %============== %============== [x,a,bw,r]=delt(I); r=mat2gray(r); figure('name','Hough变换','numbertitle','off'); rZoom=imresize(r,[96,96],'bilinear'); %为方便在界面上显示,将图像r放大 su
www.eeworm.com/read/484661/6572276

asv yyqz.asv

kk=imread('ziji5.jpg'); X=rgb2gray(kk); figure; subplot (221); imshow(X,[]); title('原始图像'); %colormap(map2) ; axis square ; init=2055615866 randn('seed',init); x=X+18*randn(size(X)); %nbc
www.eeworm.com/read/484661/6572280

m tuxiangquzao.m

kk=imread('ziji5.jpg'); X=rgb2gray(kk); figure; subplot (221); imshow(X,[]); title('原始图像'); %colormap(map2) ; axis square ; init=2055615866 ; rand('seed',init) ; X=double(X) ; x=X+40*rand
www.eeworm.com/read/478684/6713131

txt matlab实用程序百例3.txt

下载地址:http://www.ilovematlab.cn/viewthread.php?tid=2981 实例72:图像分析(1) h0=figure('toolbar','none',... 'position',[198 56 350 468],... 'name','实例72'); h1=axes('parent',h0,... '
www.eeworm.com/read/477438/6735462

m s072.m

% 灰度图像添加乘性噪声 s072 I71=imread('3.jpg'); I710=rgb2gray(I71); I711=imnoise(I710,'speckle',0.15); imshow(I711)