码迷,mamicode.com
首页 > 其他好文 > 详细

【图像计数】基于matlab染色体计数【含Matlab源码 1066期】

时间:2021-06-28 20:54:17      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:bmp   class   msu   matlab源码   load   插入图片   vpd   blog   ffffff   

一、简介

基于matlab染色体计数

二、源代码

I = imread(‘chrimage.bmp‘);
figure,imshow(I);
I2 = rgb2gray(I);
s = (I2);
I4 = 255*ones(s(1), s(2), ‘uint8‘);
I5 = imsubtract(I4,I2);
I3 = (I5,[5 5]);
I3 = imadjust(I3);
bw = im2bw(I3, 0.3);
bw = bwareaopen(bw, 10);
figure,imshow(bw);
[labeled,numObjects] = bwlabel(bw,4);
RGB_label=(labeled,@spring,‘c‘,‘shuffle‘);
figure,imshow(RGB_label);

三、运行结果

技术图片
技术图片
技术图片
技术图片

四、备注

版本:2014a
完整代码或代写加1564658423

【图像计数】基于matlab染色体计数【含Matlab源码 1066期】

标签:bmp   class   msu   matlab源码   load   插入图片   vpd   blog   ffffff   

原文地址:https://www.cnblogs.com/homeofmatlab/p/14943979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!