Advertisement

显著性检测:LC 模型

阅读量:

1. 文献参考:

视频序列中基于时空线索的视觉注意力检测。 作者为Yun Zhai与Mubarak Shah,内容位于第4至5页

2. 模型构建

2.1 显著性分析通用头文件

复制代码
 #ifndef SALIENTCOMMON_H

    
 #define SALIENTCOMMON_H
    
 // std lib
    
 #include <iostream>
    
 #include <string>
    
 #include <vector>
    
 #include <fstream>
    
  
    
 // opencv lib
    
 #include <opencv2/core/core.hpp>
    
 #include <opencv2/imgproc/imgproc.hpp>
    
 #include <opencv2/imgcodecs/imgcodecs.hpp>
    
 #include <opencv2/highgui/highgui.hpp>
    
 #include <opencv2/ml/ml.hpp>
    
  
    
 using namespace std;
    
 using namespace cv;
    
  
    
 #end

全部评论 (0)

还没有任何评论哟~