资源简介
图解《字典学习》代码实现和PPT资源,包括KSVD,OMP。有详细列子
代码片段和文件信息
% @Function: Dictionary learning & KSVD
% this function is a simple implementation of the KSVD method
% @CreateTime: 2018-07-06
% @Author: Longfei Zhou
% @https://github.com/longfeizhou2016/Dictionary-learning
%
function [ DW ] = ksvd( Y D W )
%KSVD 此处显示有关此函数的摘要
for i = 1:size(D2)
[DW] = dict_update(YDWi);
end
end
function [D_tempW_temp] = dict_update(YDWk)
indexs = find(W(k:)~=0); %找出编码中,第k行中不为0的列索引
D_temp = D;
W_temp = W;
if size(indexs2)>0
D_temp(:k) = 0; %把即将更新的字典的第k列置为0
E_k = Y(:indexs) - D_temp*W_temp(:indexs);
[usv] = svd(E_k);
D_temp(:k) = u(:1);
W_temp(kindexs) = v(:1)*s(11);
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-07-06 10:47 Dictionary-learning-master\
文件 76260 2018-07-06 10:47 Dictionary-learning-master\DictionaryLearning.pptx
文件 884 2018-07-06 10:47 Dictionary-learning-master\MOD.m
文件 489 2018-07-06 10:47 Dictionary-learning-master\Main.m
文件 1248 2018-07-06 10:47 Dictionary-learning-master\OMP.m
文件 356 2018-07-06 10:47 Dictionary-learning-master\README.md
文件 740 2018-07-06 10:47 Dictionary-learning-master\ksvd.m
- 上一篇:实用取色器工具.zip
- 下一篇:数据通路组成实验
相关资源
- openCL编程指导随书源代码
- 树莓派控制RGB LED源代码softPwm
- spring ioc+mvc代码
- 马赛克效果的JS图片切换代码.rar
- js左右切换鼠标可控的无缝图片滚动代
- oc学生成绩管理系统和计算器
- Cef3博文配套源代码
- CADENCE DRC错误代码
- TS解析源代码
- 智能交通灯 系统 源代码
- AES256 c代码及demo例程
- 基于单片机的频率计设计
- 5行代码实现微信网页中扫一扫,域名
- 生成gold序列和m序列的Verilog代码实现
- 智能交通灯控制器keil程序代码+Prote
- 数字信号-IIR数字滤波器设计
- HTTP 简介PPT
- 《OSPF协议完全实现》随书源代码官方
- linux上实现多进程和多线程实现同步互
- 简单的flash数字时钟,可用于ppt,或
- STM32蓝牙模块测试代码
- Linux系统下基于Qt的局域网即时通信系
- 《数据结构及算法经典》源代码.
- NC代码解释器
- 水晶报表pull和push方法实现源代码
- 一个Iphone网页浏览器源代码
- 手指静脉识别的代码
- ZigbeeCC2530单片机基础实验 程序代码
- 带有多普勒效应的多径信道建模仿真
- 仿京东首页_静态网页源代码.zip
评论
共有 条评论