peaks函数用法
Posted rongyupan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了peaks函数用法相关的知识,希望对你有一定的参考价值。
peaks
介绍
- peaks() 函数本质上是一个二元高斯分布的PDF;
- 从图像上看,它有3个极小点,3个极大点;
z=peaks(50)
mesh(z)
应用举例
代码
% PeaksLabel.m
Z=peaks(30);
% Z: 30*30 double matrix;
% Look for the highest point;
zmax=max(Z);
Zmax=max(zmax);
% Firstly find the maximum of 30 columns,return zmax~1x30
% Secondly find the maximum of zmax, return 1x1
[Ymax, Xmax]=find(Z==Zmax);
% Y is first parameter using find()
zmin=min(Z);
Zmin=min(zmin);
[Ymin,Xmin]=find(Z==Zmin);
% plot func Z;
mesh(Z);hold on;
% label maximum and minimum point
plot3(Xmax,Ymax,Zmax,‘k.‘,‘markersize‘,20);hold on
plot3(Xmin,Ymin,Zmin,‘k.‘,‘markersize‘,20);hold on
text(Xmax,Ymax,Zmax,[‘max_value=‘,num2str(Zmax)])
text(Xmin,Ymin,Zmin, [‘min_value=‘,num2str(Zmin)])
最终的效果图:
以上是关于peaks函数用法的主要内容,如果未能解决你的问题,请参考以下文章
单通道,三通道,多通道图像计算PSNR,SSIM 代码示例与函数注意事项讲解(peak_signal_noise_ratio,structural_similarity)