2016年7月19日

Proximal Algorithms--Moreau-Yosida regularization

摘要: 3.1 Moreau-Yosia regulariztion莫罗-吉田正则化。 共轭函数f∗: 若函数f:Rn→R是定义在Rn上的凸函数,则函数f(x)的共轭函数f∗:Rn→R定义为: f∗(x∗)=supx(−f(x))适当闭凸函数(proper closed conv... 阅读全文

posted @ 2016-07-19 21:24 Raby_Draby 阅读(3338) 评论(0) 推荐(2)

Proximal Algorithms--Fixed points

摘要: 2.3 Fixed points近端操作: proxf(v)=argminx(f(x)+(1/2)||x−v||22)(1.1) 当前仅当: x∗=proxf(x∗) 即一个点经过近端操作后是其本身,那么点x∗最小化函数f,我们称x∗是proxf的一个固定点(a fixed poi... 阅读全文

posted @ 2016-07-19 16:03 Raby_Draby 阅读(1207) 评论(0) 推荐(0)

2016年7月18日

Proximal Algorithms

摘要: Proximal Algorithms:近端算法,近似算法 proximal operator:近端操作,近似操作1 简介1.1定义 a proper convex function: 在数值分析和优化中,一个proper convex function 函数是这样的一个凸函... 阅读全文

posted @ 2016-07-18 16:19 Raby_Draby 阅读(2946) 评论(1) 推荐(0)

2016年7月17日

Create uint8/char/uchar buffer for storing the structure into matlab memory

摘要: 将Matlab Struct 转换为 C++ Struct,然后以二进制的形式存储在.dat文 件中。读取二进制形式的.dat文件,存储在C++ Struct中,并将其转换为uchar Buffer存储在matlab memory中。读取Matlab传递过来的Buffer,并将其转... 阅读全文

posted @ 2016-07-17 10:18 Raby_Draby 阅读(273) 评论(0) 推荐(0)

2016年7月15日

Matlab/C++混合编程时,Matlab System Error...

摘要: Matlab/C++混合编程时,出现: Matlab has encountered an internal problem and needs to close. The unsaved information you were working on may be lost. W... 阅读全文

posted @ 2016-07-15 21:13 Raby_Draby 阅读(522) 评论(0) 推荐(0)

2016年7月14日

Matlab和C++混合编程

摘要: 1 利用 mexopencv 实现各种数据的转换int i = MxArray(prhs[0]).toInt();double d = MxArray(prhs[0]).toDouble();bool b = MxArray(prhs[0]).toBool();std::strin... 阅读全文

posted @ 2016-07-14 10:03 Raby_Draby 阅读(760) 评论(0) 推荐(0)

2016年7月10日

模型的学习

摘要: 有结构的SVM[1]w∗=argminw∈Rn[λ2||w||2+R(w)] 其中损失函数R(w)为: R(w)=1m∑i=1mmaxs∈S(L(si,s)+)−1m∑i=1m 其中:m表示样本的数量,si是第i个样本的真实landmarks的位置。Ii表示第i幅图像(样本)。支持... 阅读全文

posted @ 2016-07-10 21:32 Raby_Draby 阅读(225) 评论(0) 推荐(0)

动态规划

摘要: 星型结构的动态规划图1.归一化的人脸图像 其中,S0,S1,S2,S3,S4分别是cen,lel,rer,ml,mr,(即中心,左眼眼角,右眼眼角和嘴左角,嘴右脚)是搜索空间。 红色的点和蓝色的点之间的连线称之为:spring,其外围的虚线边框是该特征点对应的patch.动态规划问... 阅读全文

posted @ 2016-07-10 11:09 Raby_Draby 阅读(310) 评论(0) 推荐(0)

2016年7月7日

随机梯度下降求解非平滑优化:收敛结果和最优平均策略。

摘要: 参考文献:Stochastic Gradient Descent for Non-smooth Optimization: Convergence Results and Optimal Averaging Schemes文章分析了:- Individual SGD Iterate... 阅读全文

posted @ 2016-07-07 20:32 Raby_Draby 阅读(824) 评论(0) 推荐(0)

正交投影到子空间/欧式投影到子空间或仿射空间或凸集

摘要: orthogonal projection onto a convex orthogonal projection onto a subspace orthogonal projection onto affine space Euclidean projection on a s... 阅读全文

posted @ 2016-07-07 15:07 Raby_Draby 阅读(657) 评论(0) 推荐(0)

导航