Difference between revisions of "User:Haehn"
Line 35: | Line 35: | ||
This work is done in conjunction with Luca Antiga (Medical Imaging Unit, Bioengineering Department, Mario Negri Institute, Bergamo, Italy). | This work is done in conjunction with Luca Antiga (Medical Imaging Unit, Bioengineering Department, Mario Negri Institute, Bergamo, Italy). | ||
+ | |||
+ | ==== VMKT in Slicer4 ==== | ||
+ | |||
+ | The VMTK integration in 3D Slicer will be transitioned to Slicer4. | ||
+ | |||
+ | Some developer notes: | ||
+ | <pre> | ||
+ | # clone the fork | ||
+ | git clone git@github.com:haehn/vmtk.git | ||
+ | |||
+ | # check the status | ||
+ | git status | ||
+ | |||
+ | # switch to branch superbuild | ||
+ | git checkout superbuild | ||
+ | |||
+ | # include upstream by editing .git/config | ||
+ | # 17 [remote "upstream"] | ||
+ | # 18 url = https://github.com/lantiga/vmtk.git | ||
+ | # 19 fetch = +refs/heads/*:refs/remotes/upstream/* | ||
+ | |||
+ | # get the upstream | ||
+ | git fetch upstream | ||
+ | |||
+ | # merge the latest changes to local | ||
+ | git merge upstream/superbuild | ||
+ | |||
+ | # push the latest changes from upstream to fork | ||
+ | git push | ||
+ | |||
+ | </pre> | ||
=== Images === | === Images === |
Revision as of 16:32, 6 April 2011
Daniel Haehn's Page
Info | |
---|---|
Daniel Haehn
University of Pennsylvania |
VMTK in 3D Slicer
The Vascular Modeling Toolkit (VMTK) is a collection of libraries and tools for 3D reconstruction, geometric analysis, mesh generation and surface data analysis for image-based modeling of blood vessels. It should be very interesting to offer such techniques in 3D Slicer.
The official project page: http://www.vmtk.org/Main/VmtkIn3DSlicer
More recent news on this project:
http://www.na-mic.org/Wiki/index.php/2009_Winter_Project_Week_Slicer_VMTK
http://www.na-mic.org/Wiki/index.php/Summer2009:The_Vascular_Modeling_Toolkit_in_3D_Slicer
http://www.na-mic.org/Wiki/index.php/2010_Winter_Project_Week_The_Vascular_Modeling_Toolkit_in_3D_Slicer
http://www.na-mic.org/Wiki/index.php/2010_Summer_Project_Week/The_Vascular_Modeling_Toolkit_in_3D_Slicer
http://www.na-mic.org/Wiki/index.php/2011_Winter_Project_Week:The_Vascular_Modeling_Toolkit_in_3D_Slicer
http://www.na-mic.org/Wiki/index.php/2011_Winter_Project_Week:StenosisDetector
This work is done in conjunction with Luca Antiga (Medical Imaging Unit, Bioengineering Department, Mario Negri Institute, Bergamo, Italy).
VMKT in Slicer4
The VMTK integration in 3D Slicer will be transitioned to Slicer4.
Some developer notes:
# clone the fork git clone git@github.com:haehn/vmtk.git # check the status git status # switch to branch superbuild git checkout superbuild # include upstream by editing .git/config # 17 [remote "upstream"] # 18 url = https://github.com/lantiga/vmtk.git # 19 fetch = +refs/heads/*:refs/remotes/upstream/* # get the upstream git fetch upstream # merge the latest changes to local git merge upstream/superbuild # push the latest changes from upstream to fork git push