完成的部分:Algo: Face DetectionRender : 获取到很多素材,成功读取素材并加到生成视频中MVVM : 整理了以前的代码,为配合实时Rendering修改了ModelTODO:Algo : 图片去重与质量选择Render:各种Effect参数的选取,音乐的选取MVVM:UI的...
分类:
其他好文 时间:
2014-12-05 07:03:26
阅读次数:
134
Group Today work Tomorrow work MVVM Add Algo module to the main project of monet Play Video Stream using MediaStreamSource and MediaElement cla...
分类:
其他好文 时间:
2014-11-13 23:58:16
阅读次数:
465
Group today's work tomorrow’s work MVVM display video on WP convert image to clip Algo define the output struct of slid...
分类:
其他好文 时间:
2014-11-13 01:44:46
阅读次数:
153
第一部分预备知识第1章 C + +程序设计 大家好!现在我们将要开始一个穿越" 数据结构、算法和程序" 这个抽象世界的特殊旅程,以解决现实生活中的许多难题。在程序开发过程中通常需要做到如下两点:一是高效地描述数据;二是设计一个好的算法,该算法最终可用程序来实现。要想高效地描述数据,必须具备数据结构领...
分类:
其他好文 时间:
2014-10-29 18:23:31
阅读次数:
261
Search for a Range
Total Accepted: 21480 Total
Submissions: 78454My Submissions
Given a sorted array of integers, find the starting and ending position of a given target value.
Your algo...
分类:
其他好文 时间:
2014-10-11 00:15:07
阅读次数:
197
本文剖析的STL算法的源码,在剖析源码的同时会给出一些例子,这样加深对其理解,方便我们对这些算法的使用。...
分类:
其他好文 时间:
2014-09-30 20:24:20
阅读次数:
259
package com.laiwang.algo.antispam.event.job;import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.conf.Configured;import org.apache.had...
分类:
系统相关 时间:
2014-08-04 01:52:26
阅读次数:
413
list
----------------------------------------------------------------------
??为什么很多在算法库里有的算法还要在类的成员函数里重新实现一遍?
-->1.因为算法库里的是通用的,对于具体的类来说效率不高。
比如说 reverse 如果直接用 stl_algo.h 里的 reverse,会再调用 iter_swap,
而 iter_swap 的实现方法是借用临时变量来交换两个迭代器指向的元素,这样会调用
好几次构造函数、拷贝方法、析构...
分类:
其他好文 时间:
2014-07-22 00:27:35
阅读次数:
357
random_shuffle
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
描述:将[first,last)的元素次序随机重排。
思路:
必须是 RandomAccessIterator
1.遍历区间
2.产生[...
分类:
其他好文 时间:
2014-07-20 23:12:29
阅读次数:
231
pre_permutation
----------------------------------------------------------------
描述: 取得 [first, last) 所标示之序列的前一个排列组合。如果没有,返回 false,有,返回true
思路:
从后往前
1.找两个相邻元素,令左端的元素为*i,右端的元素为*ii,且满足 *i > *ii
2.找出第一个小于 *i 的元素,令其为 *j,将*i,*j元素对调
3.将ii右端的所有元素颠倒
template <cl...
分类:
其他好文 时间:
2014-07-20 23:07:55
阅读次数:
286