资源简介

SUN:利用自然统计的显著性贝叶斯检测框架。一种自底向上的检测图像的显著性区域方法。 Saliency Using Natural Statistics)

资源截图

代码片段和文件信息

function smap=saliencyimage_convolution(imgscale)
% function smap=saliencyimage(imgscale)
%   Calculate saliency map for color image at certain scale

% each filter is zero summed
% load ICA basis functions
load stats;
d=size(B11); % number of filters
D=size(B12); % color filter streched length
fsize=D/3; % length of filter at each channel
psize=sqrt(fsize); % square filter

% preprocess image
if scale~=1
    img = imresize(imgscale);
end
img=double(img);
img=img/std(img(:));
[height width ignore] = size(img);

% process each channel
smap=zeros(height-psize+1width-psize+1);
for f=1:d
    S = conv2(img(::1)reshape(B1(f1:fsize)psizepsize)‘valid‘);
    S = S+conv2(img(::2)reshape(B1(ffsize+1:2*fsize)psizepsize)‘valid‘);
    S = S+conv2(img(::3)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      16781  2014-03-27 17:58  SUN saliency 检测方法\SUN\b

     文件       8843  2014-03-27 19:08  SUN saliency 检测方法\SUN\bbb

     文件     525424  2011-05-30 21:55  SUN saliency 检测方法\SUN\lena.png

     文件       1008  2011-05-30 21:55  SUN saliency 检测方法\SUN\readme.txt

     文件        911  2011-05-30 21:55  SUN saliency 检测方法\SUN\saliencyimage_convolution.m

     文件    1018815  2011-05-30 21:55  SUN saliency 检测方法\SUN\stats.mat

     文件       1066  2011-11-08 14:43  SUN saliency 检测方法\SUN\SUN.m

     文件     111157  2012-02-27 17:39  SUN saliency 检测方法\SUN\test.jpg

     文件         68  2014-03-27 19:13  SUN saliency 检测方法\SUN\运行方法.txt

     文件    2608755  2014-03-27 20:30  SUN saliency 检测方法\SUN_ A Bayesian framework for  Saliency Using Natural Statistics.pdf

     目录          0  2014-03-27 19:12  SUN saliency 检测方法\SUN

     目录          0  2014-03-27 20:30  SUN saliency 检测方法

----------- ---------  ---------- -----  ----

              4292828                    12


评论

共有 条评论