以下使用极小值点阈值选取方法,编写MATLAB程序实现图像切割的功能. 极小值点阈值选取法即从原图像的直方图的包络线中选取出极小值点, 并以极小值点为阈值将图像转为二值图像 clear all; close all ; G=imread('rabbit.png'); figure(); subplot(2,2,1); imshow(G); subplot(2,2,2); imhist(G); subplot(2,2,3); imhist(G); [h,x]=imhist(G); h=smooth