Reputation: 39
I want to know what API can i used to create an 3D from sequence of images. my project is to calculate liver volume through CT images. At the moment i'm searching for an API which can generate the liver model via sequence of extracted liver regions. could u please suggest API asap? thanks in advance!
Upvotes: 3
Views: 5081
Reputation: 1720
XNA game studio might be a good for you, its a game platform but you could create a very nice looking stand alone application with it, or you could host the XNA part within an existing Forms Application:
Its c#
Its Free and fully supported by microsoft
http://www.microsoft.com/download/en/details.aspx?id=23714
Its relatively easy to get started
It 3d Hardware accelerated
It supports a number of platforms (PC, Phone and Xbox)
You can integrated/host the 'game' inside an existing forms application
http://create.msdn.com/en-US/education/catalog/sample/winforms_series_1
There are lots of tutorials and samples available:
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
Upvotes: 0
Reputation: 564821
A common option for this is VTK. Kitware has a C# API for VTK called ActiViz.
It allows you to build the model from the images, as well as do volume or geometrical rendering of the features, subsetting, volume calculation, etc.
Upvotes: 3