Intent inten = new Intent(
Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(inte...
分类:
移动开发 时间:
2014-05-26 22:50:19
阅读次数:
369
问题:对文件夹下所有文件进行批量读取,跳过文件头部分,读取每个文件数据部分的7,8,9列,保存到变量并且输出到文件。数据:文件夹11m\单个文件格式:DAV1
MARKER NAME66010M001 MARKER NUMBER 7 PR TD HR WS WD RI HI # / TYPES OF...
分类:
其他好文 时间:
2014-05-23 11:57:28
阅读次数:
446
There are four types of interrupts on the CPU.
? Reset
? Maskable
? Nonmaskable
? Exception(异常也可视为中断)
These first three types are differentiated by their
priorities. The
reset interrupt has t...
分类:
其他好文 时间:
2014-05-22 13:14:59
阅读次数:
245
ffmpeg 源代码简单分析 : av_read_frame()
http://blog.csdn.net/leixiaohua1020/article/details/12678577ffmpeg中的av_read_frame()的作用是读取码流中的音频若干帧或者视频一帧。例如,解码视频的时候,....
分类:
其他好文 时间:
2014-05-21 22:21:52
阅读次数:
541
Android人脸识别技术用到的底层库:android/external/neven/,framework 层:frameworks/base/media/java/android/media/FaceDetector.java。
java层接口的限制:
1、只能接受bitmap的数据。
2、只能识别出双眼睛距离不大于20像素...
分类:
移动开发 时间:
2014-05-21 15:54:01
阅读次数:
281
关于webApp响应式设计遇到的问题,分享给大家,最近在做一个手机webApp,因为我手机是”米3“,屏幕截图大小是1080宽,所以css样式用@media screen and(min-width:1080px){ ...... },来判断屏幕最小宽度是1080px的手机web显示什么样的样式,结果却不能正常显示我所指定的css样式,最后在网上查了一下,发现分辨率的范围不对惊恐。...
分类:
移动开发 时间:
2014-05-21 15:17:17
阅读次数:
267
题意: 给出n种邮票,每种邮票有自己的面值(面值可能重复)
指定m种“总面值”,对每种“总面值”,求解满足如下条件的组合以达到该“总面值”
(1)
所用邮票在n种中可以重复选取
(2)
所用邮票张数〈=4
(3)
尽量多的使用那个不同种类的邮票 Max (Stamp Types)
(4)
若有多种方案满足(3...
分类:
其他好文 时间:
2014-05-21 14:29:54
阅读次数:
259
There are two types of non-blocking thread synchronization algorithms
- lock-free, and wait-free. Their meaning is often confused. In lock-free systems, while any particular computation may be block...
分类:
其他好文 时间:
2014-05-21 10:27:20
阅读次数:
410
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<errno.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<netinet/in.h>
#include<arpa/inet.h>
#include<sys/ioct..
分类:
其他好文 时间:
2014-05-20 18:46:37
阅读次数:
260
最近在研究响应式web页面设计,入门级media queries ,即媒体查询,媒体查询在css3中引入,作用是允许设定表达式检查媒体环境,用来确定应用不同的样式。
媒体查询应用的两种方式...
分类:
Web程序 时间:
2014-05-20 14:29:54
阅读次数:
342