VisualClutterJune07

所属分类:图形图像处理
开发工具:WINDOWS
文件大小:93KB
下载次数:2
上传日期:2019-12-10 10:32:11
上 传 者Wang2021
说明:  本程序使用MATLAB编程用于计算图片的视觉混乱度
(Calculate the visual clutter of pictures)

文件列表:
June01\addborder.m (2427, 2005-04-29)
June01\band_entropy.m (1077, 2007-05-30)
June01\colorClutter.m (4937, 2007-06-01)
June01\computeClutter.m (3707, 2007-06-01)
June01\computeColorClutter.m (4580, 2006-07-11)
June01\computeOrientationClutter.m (4116, 2006-05-05)
June01\contrastClutter.m (6313, 2007-06-01)
June01\DD.m (126, 2006-07-11)
June01\DoG1filter.m (627, 2005-04-28)
June01\entropy.m (398, 2007-05-29)
June01\filt2.m (596, 2005-04-29)
June01\getClutter_FC.m (1616, 2007-05-30)
June01\getClutter_SE.m (2008, 2007-05-30)
June01\getH.m (72, 2006-07-11)
June01\getL.m (80, 2006-07-11)
June01\getR.m (78, 2006-07-11)
June01\getV.m (78, 2006-07-11)
June01\histogram.m (228, 2007-05-29)
June01\HV.m (126, 2006-07-11)
June01\orientationClutter.m (4816, 2007-06-01)
June01\orient_filtnew.m (1625, 2006-07-11)
June01\poolnew.m (820, 2006-07-11)
June01\reduce.m (602, 2005-08-31)
June01\RGB2Lab.m (1469, 2005-04-28)
June01\RRcontrast1channel.m (1401, 2005-08-26)
June01\RRgaussfilter1D.m (414, 2006-07-11)
June01\RRgaussianPyramid.m (873, 2005-08-31)
June01\RROrientationOppEnergy.m (2480, 2006-07-11)
June01\RRoverlapconv.m (701, 2005-04-29)
June01\RRoverlapconvexpand.m (656, 2006-07-11)
June01\Simoncelli (0, 2007-06-01)
June01\Simoncelli\buildSFpyr.m (3256, 2004-10-14)
June01\Simoncelli\buildSFpyrLevs.m (1896, 2002-08-28)
June01\Simoncelli\pointOp.dll (34816, 2001-02-15)
June01\Simoncelli\pointOp.m (1207, 2002-09-18)
June01\Simoncelli\rcosFn.m (1122, 1997-10-07)
June01\Simoncelli\steer2HarmMtx.m (1803, 1997-04-26)
June01\Simoncelli\upConv.dll (51200, 2001-02-15)
June01\Simoncelli\upConv.m (2624, 2005-04-30)
... ...

% ReadMe.m % % Implements two measures of visual clutter (Feature Congestion and Subband % Entropy) proposed in: % Ruth Rosenholtz, Yuanzhen Li, and Lisa Nakano. "Measuring Visual Clutter". % Journal of Vision, 7(2), 2007. http://www.journalofvision.com/7/2/ % % Ruth Rosenholtz, Yuanzhen Li, and Lisa Nakano, May 2007. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Contents: % % getClutter_FC: computes Feature Congestion clutter, outputs both a scalar % (clutter of the whole image) and a map (local clutter). % getClutter_SE: computes Subband Entropy clutter, outputs only a scalar. % colorClutter: computes clutter maps indicating local variability in color % contrastClutter: computes clutter maps indicating local variability in contrast % orientationClutter: computes clutter maps indicating local variability in orientation % % (Please see individual routines for more info about parameters and outputs.) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Examples: % % get Feature Congestion clutter of a test map: [clutter_scalar_fc, clutter_map_fc] = getClutter_FC('test.jpg'); % display the clutter map and output the scalar figure, imshow((clutter_map_fc-min(clutter_map_fc(:)))/(max(clutter_map_fc(:))-min(clutter_map_fc(:)))); title('Feature Congestion clutter map'); clutter_scalar_fc % % get Subband Entropy clutter of the test map clutter_se = getClutter_SE('test.jpg') % % compute and display color clutter map(s) [clutter_levels, clutter_map] = colorClutter('test.jpg', 3); % compute and display contrast clutter map(s) [clutter_levels, clutter_map] = contrastClutter('test.jpg', 3, 1); % compute and display orientation clutter map(s) [clutter_levels, clutter_map] = orientationClutter('test.jpg', 3);

近期下载者

相关文件


收藏者