[root]/Applications/CLI/BatchMakeApplications
DiffusionTensorEstimationBatchMakeModule
(5 files, 561 lines)
EMSegmentBatchMakeModule
(8 files, 557 lines)
GaussianBlurBatchMakeModule
(7 files, 545 lines)
GenericBatchMakeModule
(2 files, 578 lines)
RegisterImagesBatchMakeModule
(3 files, 526 lines)
ResampleVolumeBatchMake
(0 files, 0 lines)
ResampleVolumeBatchMakeModule
(2 files, 266 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 13 (100.0%) | 403 (100.0%) | 31.0 |
| finetjul | 7 (53.8%) | 334 (82.9%) | 47.7 |
| aylward | 3 (23.1%) | 69 (17.1%) | 23.0 |
| pieper | 1 (7.7%) | 0 (0.0%) | 0.0 |
| jcfr | 1 (7.7%) | 0 (0.0%) | 0.0 |
| hjohnson | 1 (7.7%) | 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:
COMP: With the conversion to CMake version 2.6, the variables CMAKE_RUNTIME_OUTPUT_DIRECTORY CMAKE_LIBRARY_OUTPUT_DIRECTORY CMAKE_ARCHIVE_OUTPUT_DIRECTORY should be used instead of EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH.
0 lines of code changed in 1 file:
ENH: Add ResampleVolume BatchMake Module
0 lines of code changed in 2 files:
COMP: remove reference to missing subdirectory
0 lines of code changed in 1 file:
ENH: ResampleVolumeBatchMake is the BatchMake version of the ResampleVolume module
334 lines of code changed in 4 files:
ENH: ENH: ResampleVolumeBatchMake is the BatchMake version of the ResampleVolume module
0 lines of code changed in 1 file:
ENH: Version 0.99
1 lines of code changed in 1 file:
ENH: Simple demo for using BatchMake to process a parameter range using multiple files (Gaussian Blur). Also simplified CMakeLists.txt files. Compiles, but processing is incomplete - diagnosing now...
1 lines of code changed in 1 file:
BUG: Uses new slicerlibcurl library and provides Batchmake module for emsegmenter
67 lines of code changed in 1 file: