【MATLAB】matlab实现最大熵法图像分割程序
clear alla=imread('moon.tif');figure,imshow(a)count=imhist(a);[m,n]=size(a);N=m*n;L=256;count=count/N;%%每一个像素的分布概率countfor i=1:L if count(i)~=0 st=i-1; break; endendstfor i=L:-1:1 if count(i)~=0 nd=i-1; .