码迷,mamicode.com
首页 >  
搜索关键字:capture    ( 958个结果
opencv2视频截图并保存
#include #include #include #include #include #include using namespace cv; using namespace std; int main(int argc, char *argv[]) { CvCapture* capture = cvCaptureFromAVI("C:\\U...
分类:其他好文   时间:2014-11-14 15:44:30    阅读次数:152
Android调用前置摄像头的方法
之前在网上找到到好几种办法,发现要么不行要么太麻烦,现在提供一种比较方便简单地方法,在此记录一下:Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra("android.intent.extras.C...
分类:移动开发   时间:2014-11-13 15:56:05    阅读次数:1910
Directshow中的视频捕捉(转)感觉这个非常全,但真的不知道出处了...
本篇文档主要描述关于用Directshow进行视频开发的一些技术主要包括下面内容1关于视频捕捉(About Video Capture in Dshow)2选择一个视频捕捉设备(Select capture device)3预览视频(Previewing Video)4如何捕捉视频流并保存到文件(C...
分类:其他好文   时间:2014-11-13 10:43:28    阅读次数:405
ios 截屏,截图
#pragma mark 截图 - (UIImage *)capture:(UIView *)view {     UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0.0);     [view.layer renderInContext:UIGraphicsGetCurrentContext()];     U...
分类:移动开发   时间:2014-11-12 19:47:11    阅读次数:200
MiniGUI鼠标捕获演示程序
默认情况下,MiniGUI系统只向光标热点之下的窗口发送鼠标信息,但是,对窗口设置捕获后,即是窗口不在鼠标下,也可接收鼠标消息,只能同时设置1个窗口为捕获窗口。 MiniGUI自带的鼠标捕获演示程序capture.c很难看出捕获的效果,甚至让不熟悉界面编程的人产生误解,所以我改写了示例程序,鼠标右击下面的窗口可切换下面的窗口是否为捕获窗口。 #include #include #i...
分类:其他好文   时间:2014-11-09 23:55:27    阅读次数:1012
C++ lamda、function、bind使用
参考资料:http://blog.csdn.net/augusdi/article/details/11771699lambda 表达式的简单语法如下:[capture] (parameters) -> return value { body }其中[capture]可以选择如下的不同形式: 使用示...
分类:编程语言   时间:2014-11-07 23:12:50    阅读次数:373
leetcode-surrounded regions-ZZ
Problem Statement(link):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 i...
分类:其他好文   时间:2014-11-07 20:38:16    阅读次数:300
Linux音频ALSA机制学习笔记<二>
首先是dapm是什么?就是音频电源动态管理。相信电源管理大家都不会陌生。dapm设计的目的就是只有需要时才打开必要的部件 (widget),不需要时则关闭部件, 达到省电的目的。ALSA通过kcontrol来切换音频通道,当playback或者capture时会更新通道激活下 的widget power,这个是由内核event统一完成的,无须上层干预。 widget 定义widget s...
分类:系统相关   时间:2014-11-04 22:51:35    阅读次数:881
PhoneGap录像 以及 录音功能 简单代码实现
1,录音功能 navigator.device.capture.captureAudio( function(files){//成功回调函数 Ext.getCmp("video_files_mainview").config.param.sourceobj.startUpload(files[0].ful...
分类:其他好文   时间:2014-11-04 19:45:38    阅读次数:163
使用NSIS (NullSoft Scriptable Install System)制作安装程序
Name "capture" OutFile "capture.exe" InstallDir "$PROGRAMFILES\capture" Page directory Page INSTFILES UninstPage uninstConfirm UninstPage instfiles Var remote_zip_file Var local_zip_file Sect...
分类:其他好文   时间:2014-11-04 13:09:55    阅读次数:263
958条   上一页 1 ... 84 85 86 87 88 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!