这是sprint 2各个成员所完成的工作人员完成的任务Haisong Ding对Nokia Image SDK进行调研和使用完成move、color filter等Render模块的效果对MVVM的UI进行改进和完善Qing Li前期对Render模块进行调研完成基于Nokia SDK的zoom i...
分类:
其他好文 时间:
2014-12-02 14:58:51
阅读次数:
187
首先来了解一些小概念,在一般习惯中,将形成M×N的结构称为矩阵切换器,而将M×1的结构称为切换器或选择器,1×N的结构称为分配器。...
分类:
其他好文 时间:
2014-12-02 11:50:25
阅读次数:
112
【Selection Tools】1、Marquee Tools。 OptionBar其中四年控件涵意如下: 2、Magic Wand Tool。选择相同颜色的区域。 3、Magnetic Lasso Tool,根据属标轨迹自动画点。 4、Move a selection。Select ...
分类:
其他好文 时间:
2014-12-02 11:45:59
阅读次数:
162
Wisconsin Squares It's spring in Wisconsin and time to move the yearling calves to theyearling pasture and last year's yearlings to the greener pastu....
分类:
其他好文 时间:
2014-12-01 22:07:07
阅读次数:
123
只贴出部分代码,重在说明过程
av_register_all();
AVFormatContext* fctx = avformat_alloc_context();
int err = avformat_open_input(&fctx, "b.avi", NULL, NULL);
printf("open input:%d\n", err);
err = avformat_fi...
分类:
其他好文 时间:
2014-12-01 14:23:56
阅读次数:
184
背景:该系列博文同属于DICOM协议中的“网络传输”部分,前两篇系列文章分别介绍了DCMTK和fo-dicom开源库对DICOM标准的具体实现(http://blog.csdn.net/zssureqh/article/details/41016091),以及给出了fo-dicom库对C-ECHO 和C-STORE的简单实现(http://blog.csdn.net/zssureqh/article/details/41250973)。此篇博文是对前一篇的补充,同样采用分析DICOM3.0标准的方式,给出f...
分类:
其他好文 时间:
2014-12-01 01:10:22
阅读次数:
670
近期打算为Mac安装个杀毒软件,由于自己windows平台下用的是VSE,所以Mac平台也首选Mcafee家的东西了。到Mcafee官网下载点一看,有以下几个版本可以用在Mac上: 有点懵了,查看了一下Endpoint Protection For Mac (以下简称 EPM) 1.2版本是用在10...
分类:
系统相关 时间:
2014-11-30 22:52:06
阅读次数:
295
构造 构造函数 tuple的构造函数很普通,没啥说的。default (1)constexpr tuple();默认构造函数copy / move (2)tuple (const tuple& tpl) = default; 拷贝构造函数tuple (tuple&& tpl) = defau...
分类:
编程语言 时间:
2014-11-30 19:58:53
阅读次数:
295
hanoi塔:
原题大意我就不说明了,大家懂得
#include
void move(int n,char x,char y)
{
printf("move %d from %c to %c\n",n,x,y);
}
int hanoi(int n,char x,char y,char z)
{
if(n==1)
move(1,x,z);
else
{
hanoi(n-1,x,z,y);
mo...
分类:
其他好文 时间:
2014-11-30 14:08:45
阅读次数:
125
QML中的布局管理
1. 定位器
Column
Row
Grid
Flow
2. 重复器Repeater
3. 使用切换
四个定位器中都有一个add和move属性,都需要分配一个Transition对象
QML中给予锚的布局
anchor.margins来指定四个相同的边距
leftMargin、rig...
分类:
其他好文 时间:
2014-11-29 21:47:42
阅读次数:
1639