图像显著性检测的文章及代码


收集了关于显著性区域检测的论文及matlab代码,包括graph-based visual saliency detection, image signature, global contrast based salient region detection, frequency tuned salient region detection
资源截图
代码片段和文件信息
function [outmotionInfo] = gbvs(imgparamprevMotionInfo)

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%                                                                                                     %                            
% This computes the GBVS map for an image and puts it in master_map.                                  %
%                                                                                                     %
% If this image is part of a video sequence motionInfo needs to be recycled in a                     %
% loop and information from the previous frame/image will be used if                                 %
% “flicker“ or “motion“ channels are employed.                                                        %
% You need to initialize prevMotionInfo to [] for the first frame  (see demo/flicker_motion_demo.m)   %
%                                                                                                     %
%  input                                                                                              %
%    - img can be a filename or image array (double or uint8 grayscale or rgb)                      %
%    - (optional) param contains parameters for the algorithm (see makeGBVSParams.m)                  %
%                                                                                                     %
%  output structure ‘out‘. fields:                                                                    %
%    - master_map is the GBVS map for img. (.._resized is the same size as img)                       %
%    - feat_maps contains the final individual feature maps normalized                               %
%    - map_types contains a string description of each map in feat_map (resp. for each index)         %
%    - intermed_maps contains all the intermediate maps computed along the way (act. & norm.)         %
%      which are used to compute feat_maps which is then combined into master_map                    %
%    - rawfeatmaps contains all the feature maps computed at the various scales                       %
%                                                                                                     %
%  Jonathan Harel Last Revised Aug 2008. jonharel@gmail.com                                          %
%                                                                                                     %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

if ( strcmp(class(img)‘char‘) == 1 ) img = imread(img); end
if ( strcmp(class(img)‘uint8‘) == 1 ) img = double(img)/255; end
if ( (size(img1) < 128) || (size(img2) < 128) )
    fprintf(2‘GBVS Error: gbvs() meant to be used with images >= 128x128
‘);
    out = [];
    return;
end

if ( (nargin == 1) || (~exist(‘param‘)) || isempty(param) ) param = makeGBVSParams; end
[grf

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      264672  2012-12-03 10:10  2007 Graph-based Visual Saliency .pdf
     文件     9636587  2013-03-11 10:11  2011 CVPR Global Contrast based salient region detection .pdf
     文件     1334456  2012-12-03 10:16  2012 PAMI Image signature highlighting sparse salient regions .pdf
     文件     1831586  2013-03-11 10:11  Frequency tuned salient region detection.pdf
     目录           0  2013-02-25 08:57  gbvs
     目录           0  2013-02-25 08:57  gbvsalgsrc
     文件        2668  2010-02-19 23:54  gbvsalgsrcconnectMatrix.m
     文件        2137  2010-02-19 23:54  gbvsalgsrcdistanceMatrix.m
     文件         942  2010-02-19 23:54  gbvsalgsrcformMapPyramid.m
     文件         110  2010-02-19 23:54  gbvsalgsrcgetDims.m
     文件        1997  2010-02-19 23:54  gbvsalgsrcgraphsalapply.m
     文件        1026  2010-02-19 23:54  gbvsalgsrcgraphsalinit.m
     文件         104  2010-02-19 23:54  gbvsalgsrcindexmatrix.m
     文件        1808  2012-03-01 11:24  gbvsalgsrcinitGBVS.m
     文件         945  2010-02-19 23:54  gbvsalgsrcmakeLocationMap.m
     文件        1342  2010-02-19 23:54  gbvsalgsrcmexArrangeLinear.cc
     文件        6982  2010-02-19 23:54  gbvsalgsrcmexArrangeLinear.mexa64
     文件        5265  2010-02-19 23:54  gbvsalgsrcmexArrangeLinear.mexglx
     文件        8816  2010-03-02 17:47  gbvsalgsrcmexArrangeLinear.mexmaci
     文件        8736  2010-03-02 22:36  gbvsalgsrcmexArrangeLinear.mexmaci64
     文件        6144  2010-02-19 23:54  gbvsalgsrcmexArrangeLinear.mexw32
     文件        8192  2010-02-19 23:54  gbvsalgsrcmexArrangeLinear.mexw64
     文件        1836  2010-02-19 23:54  gbvsalgsrcmexAssignWeights.cc
     文件        7240  2010-02-19 23:54  gbvsalgsrcmexAssignWeights.mexa64
     文件        5325  2010-02-19 23:54  gbvsalgsrcmexAssignWeights.mexglx
     文件        8796  2010-03-02 17:47  gbvsalgsrcmexAssignWeights.mexmaci
     文件        8720  2010-03-02 22:36  gbvsalgsrcmexAssignWeights.mexmaci64
     文件        6144  2010-02-19 23:54  gbvsalgsrcmexAssignWeights.mexw32
     文件        7680  2010-02-19 23:54  gbvsalgsrcmexAssignWeights.mexw64
     文件         645  2010-02-19 23:54  gbvsalgsrcmexColumnNormalize.cc
     文件        6758  2010-02-19 23:54  gbvsalgsrcmexColumnNormalize.mexa64
............此处省略1612个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)