资源简介

基于纹理和边缘方向特征融合的目标跟踪程序代码,是基于mean shift框架的 descriptor(TOD). TOD consists of two components: texture and orientation. Considering that the huma

资源截图

代码片段和文件信息

%方法1
% X=imread(‘D:\matlab2009a\baocun\00001.jpg‘); 
Hint1=X;

for i=1:240;  
      for j=1:320;
           if(1<=i-1 & i+1<=240 & 1<=j-3 & j+3<=320)
             
              if(Hint1(i-1j)>Hint1(ij)>Hint1(i+1j))
                edge1=1;
              else
                edge1=0; 
              end 
              if(Hint1(i-1j)                edge2=2;
              else
                edge2=0; 
              end 
              
              if(Hint1(ij-1)>Hint1(ij)>Hint1(ij+1))
                edge3=4;
              else
                edge3=0; 
              end 
              if(Hint1(ij-1)                edge4=8;
              else
                edge4=0; 
              end 
              if

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1553  2012-06-01 20:39  edgetexture.m
     文件       15586  2012-06-01 21:09  sangechidutedeohtracking.m
     文件        2292  2012-05-09 21:36  TEDtexture.m

评论

共有 条评论