
图像处理
文章平均质量分 86
一个小学生在学习
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Matlab watershed函数学习(1)
function L =watershed(varargin)%WATERSHED Watershedtransform.% L = WATERSHED(A) computes a label matrixidentifying the watershed% regions of the input matrix A. A can have any dimension. The e...原创 2018-06-22 19:58:23 · 7828 阅读 · 1 评论 -
Matlab watershed函数学习(2)
% 2. Compute the distance transform of thecomplement of the binary% image. %% D = bwdist(~bw);% figure,imshow(D,[],'InitialMagnification','fit')% title('Distance transform o...原创 2018-06-26 20:15:17 · 3011 阅读 · 0 评论