资源简介
LK光流算法,包括opencv中LK稀疏跟踪的原理,主要是几篇英文文献,另外还有LK的matlab代码
代码片段和文件信息
function [UV] = OpticalFlow(Img1Img2iter_numalpha)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This MATLAB codes calculate optical flow of two consecutive frames(images)
% using Horn & Schunck‘s method.
% Input:
% Img1Img2 : image data
% iter_num : the time of iteration
% alpha : wighting coefficient
% Author:
% Huazhong University of Science and Technology
% Institute of Pattern Recognition and Artificial Intelligence
% Lee Chi
% Contact me: leechi1010@163.com
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Pre_process
[height_1width_1dim_1] = size(Img1);
if dim_1 == 3
Img1 = rgb2gray(Img1);
end
[height_2width_2dim_2] = size(Img2
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 946849 2011-09-15 13:30 LK光流原理及代码\Determining Optical Flow.pdf
文件 3442 2010-04-28 14:49 LK光流原理及代码\OpticalFlow.m
文件 192198 2011-09-15 12:04 LK光流原理及代码\Pyramidal Implementation of the Lucas Kanade Feature Tracker.pdf
文件 454822 2008-12-23 11:28 LK光流原理及代码\stavens_opencv_optical_flow.pdf
文件 761796 2008-07-10 00:05 LK光流原理及代码\光流总结.pdf
文件 285163 2011-09-17 16:33 LK光流原理及代码\改进的LK光流算法.pdf
目录 0 2011-10-21 16:00 LK光流原理及代码
----------- --------- ---------- ----- ----
2644270 7
相关资源
- sparse_representation 最热门的稀疏表示的
- sparse
-
ob
ject-Recognition-via-Sparse-PCA 利用稀疏 - FinalProject_rc2748
- Sparse-Coding-and-Dictionary 对图像稀疏编码
- Exercise1-Sparse-Autoencoder 网址:http://d
- Deep-Learning
- Code LK光流法的实现算法
- Sparse_Representations_classifier 一个常用的
- MSR-Identity-Toolkit-v1.0 微软研究院的说话
- sparsecoding 稀疏编码在图像分类中的实
- sparse-subspace-clustering 关于稀疏子空间
- LKDL_Package 该程序包是新的算法(LKD
- Sparse-representation 稀疏表示的matlab代码
- Co-OFDM 光纤射频传输系统中相干正交频
- SparseLab200-Core 的方法。这类方法首先
- KSVD
- ScSR
- LKmatlab 基于光流法的光流检测matlab算
- sparse-decomposition 基于稀疏表示的卡通
- Yule-Walker法进行谱估计
- Sparse Bayesian Learning -压缩感知
- 计算光流场 optical flow 源码 MATLAB
- 周期图法、Yule-walker方程进行功率谱估
评论
共有 条评论