摘要: 逐行扫描 : 对每一行进行扫描,如果一帧图像是连续扫描625行组成的,每秒钟共扫描50帧图像,即帧扫描频率为50帧/秒,或写成50Hz(赫兹),行扫描频率为 31.25kHz。 隔行扫描 : 分别对奇数行和偶数行进行扫描,分为顶场和底场,每一场扫描312.5行,每秒钟扫描25帧图像(50场)即隔行扫 阅读全文
posted @ 2016-09-27 17:25 chencesc 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 图像处理大神 http://blog.csdn.net/matrix_space/article/details/38687427 阅读全文
posted @ 2016-09-27 16:51 chencesc 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 与内存池差不多 线程池刚开始就全部创建起来,供用户使用 好处是 : 1.减少在创建和销毁线程上所花的时间以及系统资源的开销 2.如不使用线程池,有可能造成系统创建大量线程而导致消耗完系统内存以及”过度切换”。 线程池介绍 http://blog.csdn.net/kavensu/article/de 阅读全文
posted @ 2016-09-27 16:33 chencesc 阅读(126) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/jingzhishen/p/3555820.html 阅读全文
posted @ 2016-09-27 16:25 chencesc 阅读(126) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/jingzhishen/p/4895473.html 阅读全文
posted @ 2016-09-27 16:14 chencesc 阅读(141) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include int Base64Decode(const char *in, char* out, int out_length) { int i, v; static const uint8_t decodeMap[] = { 0x3e, 0xff, 0xf... 阅读全文
posted @ 2016-09-27 15:56 chencesc 阅读(371) 评论(0) 推荐(0) 编辑
摘要: ubuntu 安装wireshark sudo apt-get install wireshark 中间弹出提示框选yes 实例教程 http://wenku.baidu.com/view/bdb0e34433687e21ae45a907.html 使用fileter 过滤包 protocol di 阅读全文
posted @ 2016-09-27 15:49 chencesc 阅读(121) 评论(0) 推荐(0) 编辑