码迷,mamicode.com
首页 >  
搜索关键字:deformable part mode    ( 13947个结果
android 实现画笔涂鸦、擦除功能
实现涂鸦、擦除、保存的功能设置画笔为橡皮擦功能 paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR));如果你的画出来的是黑色 可能是因为你控件背景的颜色是黑色的。附件下载:zip
分类:移动开发   时间:2014-10-09 16:19:08    阅读次数:268
压缩解压函数实现
private byte[] Compression(byte[] data, CompressionMode mode) { DeflateStream zip = null; try { ...
分类:其他好文   时间:2014-10-09 15:55:04    阅读次数:251
cache支持三种pre-fetch方式:normal/pre-fetch1/pre-fetch2-way1/pre-fetch-way2
1.normal fetch ----fetch 1 cache line once2. pre-fetch mode one ---- fetch 3 cache line once3.pre-fetch mode two ----{way1: fetch 3 cache lines once ,...
分类:其他好文   时间:2014-10-09 14:41:14    阅读次数:196
time使用方法
real 0m5.064s <== 实际使用时间(real time)user 0m0.020s <== 用户态使用时间(the process spent in user mode)sys 0m0.040s <== 内核态使用时间(the process spent in ke...
分类:其他好文   时间:2014-10-09 14:12:43    阅读次数:170
安卓 SQLite error:SQLite database locked exception while compling : PRAGMA journal_mode .....
项目中频繁的切换Tab键,会频繁地从数据库读取数据,这是报出这样的错误:解决方法是在国外的某论坛找到的 :在插入数据的时候,首先:SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(f, null); db.beginTransacti.....
分类:移动开发   时间:2014-10-09 01:20:27    阅读次数:280
关于DPM(Deformable Part Model)算法中模型结构的解释
关于可变部件模型的描写叙述在作者[2010 PAMI]Object Detection with Discriminatively Trained Part Based Models的论文中已经有说明: 含有n个部件的目标模型能够形式上定义为一个(n+2)元组:(F0,P1,..., Pn...
分类:其他好文   时间:2014-10-09 01:18:47    阅读次数:285
Week5(10月11日):
Part I:提问===========================Part II:Ch03 视图3===========================要点: 1.知识点4-1:哪些应该放在动作方法中? 2.知识点4-2:单元测试介绍
分类:其他好文   时间:2014-10-08 23:49:57    阅读次数:134
Algorithm Part I:Priority Queues
1.binary heap的实现 BinaryHeap.h #ifndef BINARYHEAP_H #define BINARYHEAP_H class BinaryHeap { public: BinaryHeap(int N); bool isEmpty(); void exchange(int i,int j); ...
分类:其他好文   时间:2014-10-08 16:22:45    阅读次数:260
自定义View在android2.3.3手机上正常运行 在android4.2.2手机上报空指针
====================问题描述==================== 自定义viewpublic class PasterView extends View{private final static int MODE_NONE = 0; private final static ...
分类:移动开发   时间:2014-10-08 15:57:15    阅读次数:240
HTML 文档模式
IE5.5 引入了文档模式的概念,它是通过文档类型(DOCTYPE)切换实现的。最初的两种文档模式是:混杂模式(quirks mode)和标准模式(standards mode) 。混杂模式让IE的行为与IE5相同,而标准模式让IE的行...
分类:Web程序   时间:2014-10-08 13:32:05    阅读次数:333
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!