Cocoa应用程序用ITK、VTK读取DICOM文件
我有 xcode 3.2.6 和 Mac OS X 10.6.8,所以我下载了 ITK 3-2.20 和 VTK、Cmake 2.8-5。
我已经使用 Cmake 安装了 ITK 和 VTK,然后我也使用 Cmake 创建了 Xcode 项目 ITK 和 VTK。我设置了目标“ALL_BUILD”,然后运行目标“安装”。所以我可以从 VTK 运行一些测试,它们可以工作!
但有人能说我应该做什么来创建 Xcode 项目(Cocoa 应用程序)来使用 ITK 和 VTK 库读取和显示 DICOM 文件???
我无法理解如何使用例如 DicomImageReadWrite.cxx 来创建 Cocoa 应用程序。
有人有类似 Xcode 项目的例子吗? (我有 osirix.xcodeproj 但当我尝试运行它时出现很多错误)
I have xcode 3.2.6 and Mac OS X 10.6.8, so I've downloaded ITK 3-2.20 and VTK, Cmake 2.8-5.
I have installed ITK and VTK using Cmake, then I created Xcode projects ITK and VTK also using Cmake. I set target "ALL_BUILD" and after this run target "install". So I can run some tests from VTK and they work!
But could anyone say what I should do to create Xcode project (Cocoa app) for reading and displaying DICOM files using ITK and VTK libraries???
I can't understand how to use for example DicomImageReadWrite.cxx for creating Cocoa aplication.
Does anybody have an example of similar Xcode projects? (I have osirix.xcodeproj but when I try to run it a lot of mistakes appear)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想研究 Qt 而不是 Cocoa 来进行可视化。 Slicer项目已经迁移到该平台,并且在ITK/VTK/Qt图形集成方面非常成功。
http://www.slicer.org/slicerWiki/index.php/Slicer4:开发人员
Slicer(即国家医学图像计算联盟)也是一个非常包容和开放的社区,可以帮助创建出色的软件。
Qt 平台还提供跨平台兼容性。
You may want to investigate Qt instead of Cocoa for visualization. The Slicer project has been moving to that platform, and it has been very successful in ITK/VTK/Qt graphical integration.
http://www.slicer.org/slicerWiki/index.php/Slicer4:Developers
The Slicer (i.e. National Alliance of Medical Image Computing) is also a very receptive and open community to helping create great software.
The Qt platform also provides cross platform compatibility.