MATLAB中mesh函数的使用:基于像素强度画3D密度图(create a 3D density plot based on the pixel intensity:mesh function)(代
Posted 橙子牛奶糖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MATLAB中mesh函数的使用:基于像素强度画3D密度图(create a 3D density plot based on the pixel intensity:mesh function)(代相关的知识,希望对你有一定的参考价值。
所用的函数非常简单,只需要用到mesh函数,示例代码如下:
Ima=imread(\'F:\\pathto\\test.jpg\'); surf_ima = surf(rgb2gray(Ima)); %黑色的3D图 title(\'3D\') mesh_ima = mesh(rgb2gray(Ima)); %有色彩的3D图
参考链接:https://cn.mathworks.com/matlabcentral/answers/17998-image-processing-how-can-i-create-a-3d-density-plot-based-on-the-pixel-intensity
以上是关于MATLAB中mesh函数的使用:基于像素强度画3D密度图(create a 3D density plot based on the pixel intensity:mesh function)(代的主要内容,如果未能解决你的问题,请参考以下文章