码迷,mamicode.com
首页 >  
搜索关键字:wds capture    ( 1208个结果
关于wireshark的两个抓包过滤显示的基本语法
关于wireshark的两个基本语法 关于wireshark的两个基本语法1. Capture Filters语法:例子:tcp src port 443 ——只抓取来源端口是443的tcp数据not arp ——...
分类:其他好文   时间:2015-12-05 17:40:39    阅读次数:177
Camera2Raw
This sample demonstrates how to use the Camera2 API to capture RAW camera buffers and save them as DNG files.此示例演示了如何使用Camera2 API来捕捉原始raw数据相机缓存,并将其保存...
分类:其他好文   时间:2015-12-02 12:24:51    阅读次数:215
Capture a Screen Shot
using System;using System.Runtime.InteropServices;using System.Drawing;using System.Drawing.Imaging;namespace ScreenShotDemo{ /// /// Provides ...
分类:其他好文   时间:2015-12-01 16:27:23    阅读次数:229
UIImage 图片处理:截图,缩放,设定大小,存储
图片的处理大概就分 截图(capture), 缩放(scale),设定大小(resize), 存储(save)这几样比较好处理, 另外还有滤镜,擦试等, 以后再说在这个Demo code裡, 我写了几个方法1.等比率缩放- (UIImage *)scaleImage:(UIImage *)image...
分类:其他好文   时间:2015-11-30 00:42:32    阅读次数:234
拍照并获取图片
用户权限代码示例:1.开启相机Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File("/sdcard/t....
分类:其他好文   时间:2015-11-27 10:37:58    阅读次数:132
openwrt 无线中继
参考:https://wiki.openwrt.org/doc/recipes/relayclient该方法可以实现中继AP,而不需要AP(WDS)模式。中继后,相当于该路由所有的LAN口以及AP热点都和上级路由在同一网段。如果要访问本路由的Luci,则要手动设置电脑的ip地址,和本路由的LAN i...
分类:其他好文   时间:2015-11-21 11:53:28    阅读次数:309
[Fiddler]Unable to Generate Certificate
I'm using Fiddler2 (or trying) to capture SSL traffic for a windows desktop gadget hitting an https web service. It used to work, and then it stopped ...
分类:其他好文   时间:2015-11-20 19:42:15    阅读次数:209
【04】Opencv读视频和摄像头
一个简单读取视频文件代码: #include"highgui.h" intmain() { cvNamedWindow("flv"); //结构体Cv的C是大写的函数cv的c是小写的 CvCapture*capture=cvCreateFileCapture("D:\\BaiduYunDownload\\2015-03-13远程关机\\远程关机.flv"); IplImage*frame; while(1) { fram..
分类:其他好文   时间:2015-11-20 00:25:16    阅读次数:228
pcap的安装
pcap,即packet capture library 抓包库,这个抓包库给抓包系统提供了一个高层次的接口。所有网络上的数据包,甚至是那些发送给其他主机的,通过这种机制,都是可以捕获的。它也支持把捕获的数据包保存为本地文件和从本地文件读取信息。 还有一些详细介绍可以参考:http://baike....
分类:其他好文   时间:2015-11-13 22:03:50    阅读次数:293
调用系统录像功能保存文件到sdcard
public void click(View view) throws Exception { Intent intent = new Intent(); intent.setAction("android.media.action.VIDEO_CAPTURE")...
分类:其他好文   时间:2015-11-04 17:22:19    阅读次数:200
1208条   上一页 1 ... 81 82 83 84 85 ... 121 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!