3D modeling API in C #

I want to know which API I can use to create 3D from a sequence of images. My project is to calculate the volume of the liver through CT images. I'm currently looking for an API that can generate a liver model through a sequence of selected regions of the liver. Could you suggest an API as soon as possible? thank you in advance!

+4
source share
2 answers

A common option for this is VTK . Kitware has a C # API for VTK called ActiViz .

It allows you to create a model from images, as well as perform volumetric or geometric visualization of functions, a subset, volume calculation, etc.

+3
source

The XNA game studio may be good for you, its gaming platform, but you can create a very beautiful standalone application with it, or you can place a part of XNA in an existing Forms application:

Him with#

Its a free and fully supported microsoft

http://www.microsoft.com/download/en/details.aspx?id=23714

Relatively easy to get started

This is 3D hardware acceleration

It supports multiple platforms (PC, phone and Xbox)

You can integrate / place the "game" in an existing form application

http://create.msdn.com/en-US/education/catalog/sample/winforms_series_1

There are many tutorials and samples:

http://msdn.microsoft.com/en-us/library/bb203897(v=xnagamestudio.31).aspx

http://create.msdn.com/en-US/education/catalog/?contenttype=0&devarea=6&platform=0&sort=1

0
source

Source: https://habr.com/ru/post/1380665/


All Articles