【Matlab为全球某指数 如NDVI等 绘制显著性】

%% 读取底图与绘制
dataread= flip(imread(chl));
    %figure;imagesc(dataread)
hang=-89.75:0.5:89.75;
lie=-179.75:0.5:179.75;
[lon,lat]=meshgrid(lie,hang);
% imagescn(lon,lat,dataread)
C = dataread.*1000;%将0-1的数据与bar的10段式对应
imagescn(lon,lat,C);

cl_map=cmocean('delta');
% cmocean('delta','pivot',0);
%天蓝-蓝色:cmocean('delta')(1:128)
%黄色-绿色flip(cmocean('delta')(129:256))
lan=colormap(cl_map(1:128,:));
lv=colormap(cl_map(129:256,:));

housan=[lan(20,:);lan(60,:);lan(110,:)];
qianwu=[lv(1,:);lv(40,:);lv(60,:);lv(80,:);lv(100,:);lv(120,:)];
col=[housan;qianwu];
colormap(col);
axis off
caxis([-3,6]);

cbh = colorbar('location','eastoutside','Limits',[-3 6],'TickLength',0.005);%,'Ticks',-3:bin_length:7-bin_length
cbh.TickLabels = {'-3','-2','-1','-0','1','2','3','4','5', '6  (10^-^3 mg/m^3)',' '};
%% sig point添加显著性点

 i = 2;  %year
    tic
    sig = ['G:\linear trend\',filelistchl(i).name];
    sigpoint= flip(imread(sig));
    StatisticallySignificant = sigpoint<0.5;
   %figure;imagesc(StatisticallySignificant)
    hold on
    [lon,lat]=meshgrid(lie,hang);
    stipple(lon,lat,StatisticallySignificant,'density',100,'color','k','marker','.','markersize',5);

  • 0
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
1. 显著点的检测 Itti的A Model of Saliency-Based Visual Attention for Rapid Scene Analysis (TPAMI 1999)论文是显著性检测的鼻祖论文,检测出来的是用户关注的点。 2. 显著区域的检测 侯晓迪同学在2007年发表的一篇CVPR的论文,用很简单的方法检测了显著性区域,那之后显著性检测主要以区域检测为主:Saliency detection: A spectral residual approach (CVPR 2007),虽然之后有人诟病这篇论文有不足之处,但该想法简单,推动了显著性研究的普及。侯同学靠这一篇文章再加上投稿期间的趣事,就封神了。 3. 其他经典的显著性检测方法 在那之后陆续又有一些经典的显著性检测算法被提出:https://blog.csdn.net/touch_dream/article/details/78716507 可以看这个博文。 4. 基于深度学习的显著性检测 再之后,显著性检测领域就进入了Deep Learning时代, Deep Visual Attention Prediction TIP2018 (CODE)     https://github.com/wenguanwang/deepattention Predicting Human Eye Fixations via an LSTM-based Saliency Attentive Model (CODE)     https://github.com/marcellacornia/sam CVPR2016 Shallow and Deep Convolutional Networks for Saliency Prediction (CODE)     https://github.com/imatge-upc/saliency-2016-cvpr Saliency Detection with GAN (2017)     https://github.com/imatge-upc/saliency-salgan-2017  (CODE)     https://github.com/batsa003/salgan/ (PyTorch的版本) 5. 非自然图象的显著性检测 例如,海报的显著性检测,图表的显著性检测,地理数据的显著性检测等等。
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值