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图

  Ima原图

黑色的3D图

有色彩的3D图

参考链接:https://cn.mathworks.com/matlabcentral/answers/17998-image-processing-how-can-i-create-a-3d-density-plot-based-on-the-pixel-intensity

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM