OpenTLD Installation for Matalb 2012a (64 bi

系统 1696 0

Tested on: Matlab 2012a, Microsoft VS 2010, Win 7 (64 bit), OpenCV 2.4.2

 

See below.

(1) Install and Compile OpenCV 2.4.2 , then set PATH variables to link to OpenCV DLLs. (how to? see here )

(2) Setup mex compiler in Matlab. Run “mex –setup”, and select VS 2010 compiler form the list.

(3) Check paths in “compile.m”, edit it. Mine looks like so:

        include = 
        
          ' -IE:\OpenCV\install\include\ -IE:\OpenCV\install\include\opencv'
        
        ;
      
        libpath = 
        
          'E:\OpenCV\install\lib\';
        
      
        files = dir(fullfile(libpath,'*.lib'));
      

(4) In TLD source, comment out the following lines in lk.cpp, fern.cpp and bb_overlap.cpp. Otherwise  you will get an error.

        
          #ifdef
        
         _CHAR16_T 
      
        
          #define
        
         CHAR16_T 
      
        
          #endif
        
      

(5) Run compile.m. If you get include errors, check PATH variables, and make sure “E:\OpenCV\install\bin;” included.

(6) Run run_TLD.m. If you get a 32-bit error, make sure your path ponits to the 64-bit version of OpenCV DLLs.

An example of errors-- “lk.obj : error LNK2019: unresolved external symbol…”

 

BTW1, if you successfully compiled the mex files, but get a error like this:

"??? Unexpected Standard exception from MEX file……error: (-27) create() called for the missing output array in function create”

        Error 
        
          in
        
         ==>
        
          ; tldTracking at 30
        
      
        xFJ = lk(2,tld.img{I}.input,tld.img{J}.input,xFI,xFI)
        
          ; % track all points by
        
      
        Lucas-Kanade tracker from frame I 
        
          to
        
         frame J, estimate Forward-Backward error,
      
        and NCC 
        
          for
        
         each point
      
         
      
        Error 
        
          in
        
         ==>
        
          ; tldProcessFrame at 25
        
      
        [tBB tConf tValid tld] = tldTracking(tld,tld.bb(:,I-1),I-1,I)
        
          ; % frame-to-frame
        
      
        tracking (MedianFlow)
      
         
      
        Error 
        
          in
        
         ==>
        
          ; tldExample at 41
        
      
        tld = tldProcessFrame(tld,i)
        
          ; % process frame i
        
      
         
      
        Error 
        
          in
        
         ==>
        
          ; run_TLD at 43
        
      
        [bb,conf] = tldExample(opt);
      

Please change the line 186 of lk,cpp from

        cvCalcOpticalFlowPyrLK( IMG[J], IMG[I], PYR[J], PYR[I], points[1], points[2], nPts, cvSize(win_size,win_size), Level, 0     , 0, cvTermCriteria(CV_TERMCRIT_ITER|CV_TERMCRIT_EPS,20,0.03), CV_LKFLOW_INITIAL_GUESSES | CV_LKFLOW_PYR_A_READY | CV_LKFLOW_PYR_B_READY );
      

to

        cvCalcOpticalFlowPyrLK( IMG[J], IMG[I], PYR[J], PYR[I], points[1], points[2], nPts, cvSize(win_size,win_size), Level, status     , 0, cvTermCriteria(CV_TERMCRIT_ITER|CV_TERMCRIT_EPS,20,0.03), CV_LKFLOW_INITIAL_GUESSES | CV_LKFLOW_PYR_A_READY | CV_LKFLOW_PYR_B_READY );
      

 

 

BTW2, Some Matlab extensions are needed:

Image Acquisition Toolbox, Image Processing Toolbox, Signal Processing Toolbox, Statistics Toolbox

 

For other platforms, pls refer to the link: https://github.com/zk00006/OpenTLD/wiki/Installation

OpenTLD Installation for Matalb 2012a (64 bit)


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论