码迷,mamicode.com
首页 >  
搜索关键字:back tracking    ( 16119个结果
LaTeX 迅速入门
迅速的吧下面的代码复制走就可以用了。具体的代表什么可以看注释% 后面的 \documentclass[12pt,twocolumn]{article} % twocolumn是双栏,去掉就是单栏了 \title{Tracking} \author{iker Cross} \date{2014.12.16} \begin{document} % 正文的开始 \maketi...
分类:其他好文   时间:2014-12-17 20:58:12    阅读次数:380
Android开发-API指南-任务和回退栈
Task 和 Back Stack英文原文: http://developer.android.com/guide/components/tasks-and-back-stack.html 采集(更新)日期:2014-12-16在本文中保存 Activity 状态管理多个 Task指定启动模式处理 ...
分类:移动开发   时间:2014-12-17 18:28:53    阅读次数:289
VS2015 VNext学习系列之五:Grunt篇
1.概述Grunt:基于 JS 的task runners。它是一个应用程序,能自动化地开发一些任务。2.添加less在“WebAppBowerGrunt”项目根目录下,新建"Lesses"文件夹,在其内,添加site.less文件,其代码为:@bgcolor: red;body { back...
分类:其他好文   时间:2014-12-17 18:22:27    阅读次数:614
c++
1.ListList将元素按顺序储存在链表中. 与 向量(vectors)相比, 它允许快速的插入和删除,但是随机访问却比较慢.list对象函数assign() 给list赋值back() 返回最后一个元素begin() 返回指向第一个元素的迭代器clear() 删除所有元素empty() 如果li...
分类:编程语言   时间:2014-12-17 18:03:38    阅读次数:265
【LeetCode】Permutations II 解题报告
【题目】 Given a collection of numbers that might contain duplicates, return all possible unique permutations. For example, [1,1,2] have the following unique permutations: [1,1,2], [1,2,1], an...
分类:其他好文   时间:2014-12-17 12:49:36    阅读次数:140
目标跟踪系列十二:Exploiting the Circulant Structure of Tracking-by-detection with Kernels代码关键记录
代码关键点记录:成功不远了!O(∩_∩)O 哈哈~ 1. Input : load_video_info.m 读入视频文件groundtruth_rect.txt(里面是4个一组的点,x,y, width ,height ?),得到有用的参数: target_sz = [ground_truth(1,4), ground_truth(1,3)];  得到的是目标的尺寸(这里好像...
分类:其他好文   时间:2014-12-16 22:43:41    阅读次数:894
Android两次后退键退出
转载请注明出处: 只要在 *.Java 文件中添加即可 private int back = 0; //===============back两次退出=====================   @Override   public boolean onCreateOptionsMenu(Menu menu) {//必要的改变    menu.add(0, 2,...
分类:移动开发   时间:2014-12-16 19:14:33    阅读次数:155
Min Stack (LeetCode) tweak it to avoid Memory Limit Exceeded
1 class MinStack { 2 public: 3 void push(int x) { 4 if(values.empty()) 5 { 6 values.push_back(x); 7 min_i...
分类:其他好文   时间:2014-12-16 16:40:24    阅读次数:177
【LeetCode】Combination Sum I & II 解题报告
【Combination Sum I】 Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeated number may be cho...
分类:其他好文   时间:2014-12-16 11:45:46    阅读次数:186
Opencv 实现图像的离散傅里叶变换(DFT)、卷积运算(相关滤波)
我是做Tracking 的,对于速度要求很高。发现傅里叶变换可以使用。于是学习之! 核心: 最根本的一点就是将时域内的信号转移到频域里面。这样时域里的卷积可以转换为频域内的乘积!       在分析图像信号的频率特性时,对于一幅图像,直流分量表示预想的平均灰度,低频分量代表了大面积背景区域和缓慢变化部分,高频部分代表了它的边缘,细节,跳跃部分以及颗粒噪声.  因此,我们可以做相应的锐化和模糊的...
分类:其他好文   时间:2014-12-16 10:03:56    阅读次数:225
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!