OTSU算法的matlab实现

TimeKiller364027 52 0 M 2019-05-05 01:05:31

最大类间方差法(OTSU)阈值分割的matlab实现

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

运行非常流畅,不错!~

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

可以用的程序,不错

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

不错,还好!,可以运行出结果

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

可以运行,好资源,谢谢分享!!

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

可以运行,易懂,很不错,谢谢

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

谢谢,很全,不过matlab中有 graythresh(),可以直接实现,下面是程序 I=imread('E:\Image\IMG_7384.jpg'); subplot(1,3,1); imshow(I);title('原图'); a=rgb2gray(I); subplot(1,3,2); imshow(a);title('灰度图'); level = graythresh(a); a=im2bw(a,level); subplot(1,3,3); imshow(a,[]);title('OTSU分割结果');

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

代码写的好,注释也很全,楼主的服务太周到了,十二分感谢

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

很好用,效果很好,作者很用心,真心感谢这样的好资源

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

很好,可以运行。跟matlab里面自带的一样!

Generic placeholder image 卡了网匿名网友 2019-05-05 01:05:31

代码流畅,可以直接运行出结果,注释也很详细。