[root]/Applications/CLI/DiffusionApplications
ResampleDTI
(42 files, 4401 lines)
StochasticTractography
(0 files, 0 lines)
StochasticTractographyFilter
(12 files, 5139 lines)
dwiNoiseFilter
(17 files, 2275 lines)
dwiUNLM
(12 files, 2003 lines)
jointLMMSE
(12 files, 2162 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 7 (100.0%) | 13 (100.0%) | 1.8 |
| rjosest | 1 (14.3%) | 12 (92.3%) | 12.0 |
| pieper | 1 (14.3%) | 1 (7.7%) | 1.0 |
| tringo | 1 (14.3%) | 0 (0.0%) | 0.0 |
| millerjv | 1 (14.3%) | 0 (0.0%) | 0.0 |
| jcfr | 1 (14.3%) | 0 (0.0%) | 0.0 |
| atriveg | 2 (28.6%) | 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:
BUG: remove older code (use python stochastic tractography instead)
1 lines of code changed in 1 file:
ENH: Added Rician-adapted Non Local Means filter to CLI/Diffusion applications
0 lines of code changed in 1 file:
ENH: Modification of DiffusionApplicaions on CLI; enhanced dwiFiltering and added a new filter
0 lines of code changed in 1 file:
ENH: merge from TransformIO branch from revision 4897 through revision 6346
0 lines of code changed in 1 file:
ENH:Initial update of StochasticTractographyFilter to a newer version
0 lines of code changed in 1 file:
ENH: Restructuring Diffusion applications under DiffusionApplications directory
12 lines of code changed in 1 file: