[root]/Modules/Tractography
Display
(19 files, 3591 lines)
Resources
(9 files, 101 lines)
Editor
(4 files, 364 lines)
FiducialSeeding
(11 files, 2164 lines)
Testing
(1 files, 0 lines)
Seeding
(4 files, 608 lines)
Settings
(1 files, 0 lines)
Testing
(4 files, 189 lines)
TestData
(3 files, 10885 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 11 (100.0%) | 69 (100.0%) | 6.2 |
| barre | 1 (9.1%) | 45 (65.2%) | 45.0 |
| lauren | 1 (9.1%) | 19 (27.5%) | 19.0 |
| millerjv | 1 (9.1%) | 2 (2.9%) | 2.0 |
| freudling | 1 (9.1%) | 2 (2.9%) | 2.0 |
| alexy | 3 (27.3%) | 1 (1.4%) | 0.3 |
| pieper | 2 (18.2%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (18.2%) | 0 (0.0%) | 0.0 |
ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY
See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs
when subdirs command was taking a list of directory, change it
using the following pattern:
Before:
subdirs(sagarmatha kumbhu eiger)
After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)
0 lines of code changed in 1 file:
ENH: Update CMakeLists.txt - CMake 2.6 is now required
The following line have been added:
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
0 lines of code changed in 1 file:
COMP: re-enable ROI select
0 lines of code changed in 1 file:
COMP: ROISelect editor module removed at Lauren's request
0 lines of code changed in 1 file:
ENH: Slicer3 Spring Installation Clean Up
45 lines of code changed in 1 file:
BUG: Configuration changes needed now that there is a SlicerBaseCLI library that holds utility code.
2 lines of code changed in 1 file:
COMP: disabled voxelmeshing and some parts of tractography to be able to compile
2 lines of code changed in 1 file:
ENH: moved tractography seeding core to vtkTeel lib
0 lines of code changed in 1 file:
ENH: commented Fiducial Seeding for now
0 lines of code changed in 1 file:
ENH: added FiducialSeeding module GUI
1 lines of code changed in 1 file:
ENH: Added initial skeleton of tractography module
19 lines of code changed in 1 file: