分水岭算法ߝ CT 肺部分割
我正在寻找使用分水岭算法在 CT 图像中分割肺部的源代码。如果您找到任何网站/源代码,请告诉我。
I am searching for source code to segment Lung in CT images using watershed algorithm. Please let me know if you find any website / source code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
相关算法:
一些源代码在这里
Relevant algorithms:
Some Source code here
维基百科可能会有所帮助。
Wikipedia might help.
OpenCV 库实现了 分水岭 算法。
OpenCV library has the implementation of Watershed algorithm.
Insight Toolkit 是一个用于医学图像分割和配准的综合图像处理框架。
有许多专门的算法用于处理医学图像,包括分水岭算法。有些示例与您所描述的非常相似。
我强烈建议您在进行如此重要的项目之前阅读ITK 软件指南一书。
此外,选择一个能够正确处理医学图像及其特殊属性和要求(例如患者方向、各向异性体素等)的库非常重要。大多数库不能正确处理这些方面,而 ITK 是从头开始设计的,可以支持医学成像应用程序的所有复杂性。
The Insight Toolkit is a comprehensive image processing framework for segmentation and registration of medical images.
There are many specialised algorithms for processing medical images, including the Watershed algorithm. Some of the examples are very similar to what you describe.
I strongly recommend reading the ITK Software Guide book before undertaking such a significant project.
Furthermore, it is very important to choose a library that correctly deals with medical images and the special attributes and requirements they have (for example, patient orientation, anisotropic voxels, etc). Most libraries do not handle these aspects correctly, while ITK has been designed from the ground up to support all the complexities of medical imaging applications.