码迷,mamicode.com
首页 >  
搜索关键字:capture    ( 958个结果
学习资料
常用工具:css在线手册jquery 1.8在线手册正则表达式语法css sprite图像拼接技编辑器推荐:Editplus,notepad++。截图截图工具:faststone capture服务器工具:xampp逻辑图工具:xmindsvn客户端工具推荐:TortoiseSVN http://t...
分类:其他好文   时间:2014-08-23 20:16:01    阅读次数:302
OpenCV运动目标检测——帧间差,混合高斯模型方法
一、简单的帧间差方法 帧差法是在连续的图像序列中两个或三个相邻帧间采用基于像素的时间差分并且闽值化来提取图像中的运动区域。 代码: int _tmain(int argc, _TCHAR* argv[]) { VideoCapture capture("bike.avi"); if(!capture.isOpened()) return -1; double rate =...
分类:其他好文   时间:2014-08-21 17:11:14    阅读次数:2069
Opencv程序移植时问题及解决,移植成功啦,哈哈
#include   #include   #include                 int main(int argc,char **argv)   {       CvCapture* capture = NULL;       IplImage* pImg = NULL;     IplImage* pImg1 = NULL;     fprintf(s...
分类:其他好文   时间:2014-08-18 10:50:14    阅读次数:895
js-addEventListener()第三个参数useCapture
概述: 第3个参数叫做useCapture,是一個boolean值,就是true or false 。如果送出true的話就是瀏覽器會使用Capture方式,false的話是Bubbling,只有在特定狀況下才會有影響,通常建議是false,而會有影響的情形是目標元素(target element....
分类:Web程序   时间:2014-08-16 14:56:50    阅读次数:134
使用Pspice进行电路仿真
Pspice现在是集成到Cadence中的一个电路仿真工具,能通过Pspice模型的原理图仿真电路的输出结果。其大致步骤是:1. 创建仿真工程执行菜单命令File->New->Project,选择Analog or Mixed A/D,然后选择一个模板(这个看自己需要,也可以是空工程)2. 添加仿真元件库仿真所用的元件必须要有Pspice模型,Cadence安装目录下\tools\capture\...
分类:其他好文   时间:2014-08-13 22:24:07    阅读次数:356
Surrounded Regions
Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded ...
分类:其他好文   时间:2014-08-13 18:06:46    阅读次数:200
attachEvent 和 addEventListener 的用法
http://www.oschina.net/question/54100_25614addEventListener中的第三个参数是useCapture, 一个bool类型。当为false时为冒泡获取(由里向外),true为capture方式(由外向里)。点击这里
分类:其他好文   时间:2014-08-11 09:59:51    阅读次数:150
Use PrefHUD ES to Do Frame Capture Android Game
Author: http://www.cnblogs.com/open-coder/p/3898224.html This is short tutorial about how to do frame capture with Nvidia PrefHUD. You could find a de...
分类:移动开发   时间:2014-08-08 01:31:04    阅读次数:421
[leetcode]Surrounded Regions
Surrounded RegionsGiven a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that...
分类:其他好文   时间:2014-08-07 22:43:55    阅读次数:304
c++11小计
[capture] (parameters) mutable -> return-type { statement }" (parameters)" 和 "-> return-type"在不需要的情况下可省略。mutable:mutable修饰符。默认情况下,lambda函数总是一个const函数,...
分类:编程语言   时间:2014-08-04 20:40:07    阅读次数:233
958条   上一页 1 ... 89 90 91 92 93 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!