四川大学硕士学位论文
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
四川大学
硕士学位论文
题目基于Power mode图像和骨架算法的血管直径测量方法作者李硕完成日期2009 年04 月01日
培养单位四川大学
指导教师刘东权教授
专业计算机应用
研究方向计算机应用
授予学位日期年月日
基于Power mode图像和骨架算法的血管直径测量方法
计算机应用
研究生:李硕指导教师:刘东权
在临床医学领域里,很多情况下医生希望测量病人血管的直径。它们对于很多病情的诊断,如冠心病、肝硬化等,起到了至关重要的作用。随着计算机硬件技术的飞速发展,我们可以利用图像处理技术更方便地利用血管图像来帮助医生测量血管直径。
进年来发展出的3D超声技术可以提供给我们更多的血管信息。Power mode 图像相比传统的B模式超声图像和多普勒彩色血流图(CFM),高信噪比的优点。而且它还具有可选观察角度,易于从背景中分割出来等特性,因此非常适合作为血管测量用图。
本文给出了一个基于3D Power mode图像计算血管直径的方案:先将3D Power mode图像转化成二值图像,然后提取二值图像中血管的边界和中线,然后对中线上任意一点找到其切线,最后找到切线过这点的垂线,垂线与边界相交于两点之间的距离记为此中线点处的直径。
整个方案框架中如何找到一条连续,准确,理想的中线,是重点与难点,它决定了最终测量结果的准确性。而且由于血管形状复杂,边界不光滑,又有很多分支,就更加大了中线提取的难度。所以作者对此进行了深入的研究。
在计算机视觉技术里有一类算法,是用来提取数字图像中某个或某些物体的中轴线,以便用来表征物体的拓扑结构,或作为物体识别的特征。我们称这类算法为骨架算法。有些文献也将其称为中轴变换,或细化算法。
已经有大量的文献,基于不同思想,对骨架算法进行了各种实现和改进。这些方法的运算复杂度,得出的结果以及适用的情形都不尽相同。最常见的细化法,利用一些判断条件不断删除目标物体边界点,最后剩下骨架点,适用于成条状,带状物体的骨架提取,如文字,指纹;基于数学形态学的开操作和腐
蚀操作“沉淀出”目标物体骨架的算法,适用于寻找物体特征点,并可以从骨架重建出原物体来;基于目标物体欧式距离变换图提取出的骨架,拓扑结构较准确;利用几何里物体最大内切圆的概念寻找骨架点的方法,运算简单,速度快;等等。
本文第一部分首先提出科研问题和科研背景,然后提出了一套解决方案,并概要地介绍了方案中用到的两个核心技术,Power mode图像和骨架算法。
第二部分对骨架算法进行了深入地研究,并于最后提出了一个基于欧式距离图,距离图梯度信息和最短路径思想的算法。
最后一个部分介绍了作者在进行研究过程中看到的骨架算法在其他很多领域里的重要应用。简要地整理介绍出来,希望能对从事相关工作的读者有所帮助。
关键词:血管直径测量骨架算法形态学细化距离变换计算机视觉3D Power mode
Blood Vessel Tracking and Diameter Measurement
Method Based on Skeleton Algorithm
Major:Computer Application
Graduate:Li Shuo Advisor:Dongc Liu
In clinic medicine field, doctors tend to know patients’ blood vessel diameter in many situations, since they are very helpful to the diagnoses of many diseases, such as coronary heart disease, hepatocirrhosis and so on. With the fast development of computer hardware, we can take use of digital image processing techniques to help doctors to measure the blood vessel diameter conveniently.
3D ultrasound techniques, which developed recently, can provide us much information about blood vessel. 3D Power mode image has much higher signal-to-noise ratio (SNR) comparing to traditional B mode ultrasound image and Doppler color flow map (CFM). Also it is angle dependence. What is more, blood flow can easily be extracted from background in 3D power mode image, so it is a very good choice for blood vessel diameter measurement.
This paper presents a solution to calculate vessel’s diameter based on 3D power mode images: first transfer 3D Power mode image into binary image, then extract the binary image’s boundary and midline; after that, for each point on the midline, we find the tangent and the Perpendicular Line of the tangent through that midline point, the perpendicular line and the boundary intersect into two points, the distance between those two points are the diameter of the vessel on that given midline point.
In this solution, the key is to find a continuous, exact, and one pixel wide midline, since it will affect the veracity of the final measurement. However, the structures of the vessels are usually very complicate, and the boundary is not smooth, which increase the difficulty of extracting the midline. So