ITK基本介绍和实例分析

来源:互联网 发布:淘宝开车精灵怎么样 编辑:程序博客网 时间:2024/06/06 01:35

本文由Markdown语法编辑器编辑完成。

1. ITK简介:

1999年,由美国国家卫生院NI()

2. ITK在windows7的编译:

为了增加对ITK的直观理解,需要研究ITK的源代码和自带的很多例子。因此,在官网上下载了ITK的源代码后,接下来需要做的工作便是编译源代码和例子程序了。

ITK编译完成后,既可以作为独立的一个工程,去研究它的每一个例子的实现原理。但是,更通常的应用是将ITK编译生成的lib和dll作为第三方库,引入到需要ITK的工程中来。

The reason why you don’t find many examples on 3D segmentation in the Software Guide is because it was harder to find a way of presenting the results.

However, almost all the segmentation methods in ITK are implemented for N-Dimensions. From the point of view of writing code, you can convert most of the examples in the software guide from 2D to 3D just by changing the template parameters of the Image type instantiation.

In particular:

  - RegionGrowing  - FastMarchingLevelSet  - ShapeDetectionLeveSet  - GeodesicActiveContoursLeveSet  - ThresholdSegmentationLevelSetFltkGui  - Morphogenesis  - SegmentationEditorFltkGui  - DeformableModels  - SNAP (Level Sets)  - VolviewPlugins (many algorithms into VolView)  - LiverTumorSegmentation

3. ITK区域分割实例:

未完待续……

0 0