This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project( itkMetaImageMesh.cxx ) | |
cmake_minimum_required( VERSION 2.6 ) | |
find_package( ITK ) | |
include( ${ITK_USE_FILE} ) | |
add_executable( itkMetaImageMesh itkMetaImageMesh.cxx ) | |
target_link_libraries( itkMetaImageMesh ${ITK_LIBRARIES} ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Procedure 2 Update Level Set Lists | |
// Update the zero level set | |
1: for each point p in Lz | |
2: add F(p) to phi(p) | |
3: if(phi(p)> .5), remove p from Lz, add p to Sp1 | |
4: if(phi(p)<-.5), remove p from Lz, add p to Sn1 | |
*/ | |
LevelSetNodeListType* list_0 = m_SparseLevelSet->GetListNode( 0 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import subprocess,os | |
from time import localtime,strftime | |
# directory containing the repositories | |
repo_dir = "/Users/arnaud/GITROOT/ITKExamples/.git" | |
# feed url | |
feed_url = "http://example.com/git/index.xml" | |
# location of rss on the web server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required( VERSION 2.8 ) | |
find_package( ITK REQUIRED ) | |
include( ${ITK_USE_FILE} ) | |
add_executable( smooth smooth.cxx ) | |
target_link_libraries( smooth ${ITK_LIBRARIES} ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project( reslice ) | |
cmake_minimum_required( VERSION 2.6 ) | |
find_package( GDCM REQUIRED ) | |
include( ${GDCM_USE_FILE} ) | |
add_executable( reslice reslice.cxx ) | |
target_link_libraries( reslice vtkgdcm ${VTK_LIBRARIES} ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project( viewer ) | |
cmake_minimum_required( VERSION 2.8 ) | |
find_package( VTK REQUIRED ) | |
include( ${VTK_USE_FILE} ) | |
add_executable( viewer MACOSX_BUNDLE viewer.cxx ) | |
target_link_libraries( viewer ${VTK_LIBRARIES} ) |