资源简介
对一幅含有大量细胞的图片进行边缘检测,标注其中的细胞,并且统计细胞的数目
代码片段和文件信息
%clear all;
%close all;
%warning off all;
%I=imread(‘cell.bmp‘);
I=uint8(im111);
%figureimshow(I)xlabel(‘原始图像‘);
I=rgb2gray(I);
f1=medfilt2(I[5 5]);%中值滤波
f1=medfilt2(f1[7 7]);
f1=imadjust(f1[0.40.9][0 1]);%增强对比度
BW_canny=edge(f1‘canny‘[0.020.06]0.7);
%figureimshow(BW_canny)xlabel(‘原始图像‘);
se=strel(‘disk‘3);
BW_canny=imdilate(BW_cannyse);%膨胀
BW_canny=imdilate(BW_cannyse);%膨胀
BW_canny=imdilate(BW_cannyse);%膨胀
BW_canny=imdilate(BW_cannyse);%膨胀
BW_canny=imerode(BW_cannyse);%腐蚀
BW_canny=imerode(BW_cannyse);%腐蚀
domain=[1 1 1;0 1 0;1 1 0];
Y=ordfilt2(BW_canny6domain);%统计滤波器
domain=[1 0 1;1 1 0;1 1 1];
Y=ordfilt2(Y5domain);
Y1=edge(Y‘canny‘);
%figureimshow(Y1)xlabel(‘canny 检测‘);
Y1=imdilate(Y1se);%膨胀
%figureimshow(Y1)xlabel(‘canny 检测‘);
set(h3‘CData‘Y1);
imwrite(Y1‘temp.jpg‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3932214 2011-06-20 13:41 Edge detection\17.bmp
文件 893 2011-07-06 23:47 Edge detection\Canny.m
文件 3932214 2011-06-20 13:41 Edge detection\cell.bmp
文件 3932214 2011-06-20 13:41 Edge detection\cell1.bmp
文件 169 2011-07-03 21:36 Edge detection\cellnum.asv
文件 241 2011-07-04 18:44 Edge detection\cellnum.m
文件 202 2011-07-06 21:05 Edge detection\circle.asv
文件 203 2011-07-06 21:06 Edge detection\circle.m
文件 6163 2009-06-05 21:43 Edge detection\emily.fig
文件 3095 2009-06-05 21:36 Edge detection\emily.m
文件 1182 2011-07-04 18:42 Edge detection\Log.m
文件 3136 2011-06-27 23:47 Edge detection\main.asv
文件 3667 2011-07-06 21:00 Edge detection\main.m
文件 470 2011-07-07 00:51 Edge detection\markcell.asv
文件 470 2011-07-07 00:51 Edge detection\markcell.m
文件 432 2011-06-29 00:28 Edge detection\open_menu_1.m
文件 965 2011-06-29 00:59 Edge detection\Prewitt.asv
文件 984 2011-07-04 18:42 Edge detection\Prewitt.m
文件 334 2011-06-29 13:09 Edge detection\save_as_menu_1.m
文件 1209 2011-06-29 00:54 Edge detection\sobel.asv
文件 1249 2011-07-05 15:28 Edge detection\sobel.m
文件 42506 2011-07-06 23:57 Edge detection\temp.jpg
文件 6226 2009-06-05 21:34 Edge detection\unti
文件 3183 2009-06-05 21:34 Edge detection\unti
文件 1367 2011-07-04 18:42 Edge detection\Zerocross.m
..A..H. 7680 2011-05-27 15:58 Edge detection\zq.suo
目录 0 2011-11-03 22:43 Edge detection
----------- --------- ---------- ----- ----
11882668 27
............此处省略0个文件信息
- 上一篇:软件工程及应用
- 下一篇:linux内核分析实验 模拟宾馆房间预订系统
相关资源
- 基于FPGA的图像处理方法
- 文件对比工具,可以比对整个项目代
- 亚像素级别的边缘检测和获取290028
- Robert边缘检测
- 13篇关于图形边缘检测的英文文献
- Qt实现二值细胞图像区域上色
- BC对比软件mac版
- 图像处理 大作业,,图像边缘检测
- 监控系统APM对比
- 边缘检测的verilog代码
- 亚像素级别的边缘检测和获取
- 数字图像中边缘检测算法研究
- crosswalk和webview使用对比Demo
- FreeFileSyncWindows文件同步工具
- vs2010+opencv 图像处理,边缘检测,可设
- 小巧的图纸对比工具
- 图像融合源代码(多种算法可对比)
- 人脸识别demo
- 安卓opencv实现多人检测,人脸检测,
- CISCO Catalyst 3850介绍和3750、5760的对比
- jeasyopc utgard 完整 demo 性能对比 学习书
- 乳腺癌细胞病理图像数据集.zip
- 论文研究-一维时间序列分形维数算法
- 流式细胞术分析软件-flowjo 10
- CVPR2019论文BDCN的Pytorch代码
- 实验三 TCP Tahoe与Reno 运行机制对比分
- OpenCV几包计数
- 0-1背包问题的算法设计策略对比与分
- 优化算法汇总与对比分析.rar
- 等级保护三级2.0与1.0对比分析表.xls
评论
共有 条评论