[root]/Modules/ChangeTracker
CommandLineApplication
(3 files, 1055 lines)
CommandLineApplicationNew
(3 files, 963 lines)
DeformableMetric
(3 files, 269 lines)
Filters
(10 files, 4525 lines)
ImageData
(2 files, 201 lines)
Tcl
(2 files, 2250 lines)
Testing
(2 files, 93 lines)
TumorDiameterEstimation
(0 files, 0 lines)
Code
(0 files, 0 lines)
LookAt
(0 files, 0 lines)
Data
(0 files, 0 lines)
Wizard
(16 files, 5395 lines)
![]()
| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 138 (100.0%) | 3939 (100.0%) | 28.5 |
| fedorov | 120 (87.0%) | 3935 (99.9%) | 32.7 |
| lorensen | 6 (4.3%) | 4 (0.1%) | 0.6 |
| pohl | 5 (3.6%) | 0 (0.0%) | 0.0 |
| pieper | 2 (1.4%) | 0 (0.0%) | 0.0 |
| naucoin | 2 (1.4%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (1.4%) | 0 (0.0%) | 0.0 |
| domibel | 1 (0.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:
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:
ENH: remove ChangeTracker tests. They are not testing the functionality used
by GUI. Testing needs to be updated to reflect the updated processing
workflow.
3 lines of code changed in 1 file:
ENH: use cubic interpolation instead of linear
1 lines of code changed in 1 file:
BUG: demons registration discards orientation, so unless the input is axial,
the results of deformable analysis are garbage. Fix this in the ROI extraction
routine to enforce axial orientation.
4 lines of code changed in 1 file:
BUG: missed resample factor
1 lines of code changed in 1 file:
BUG: remove non-portable fmin(), ENH: roi extraction debugging code, just in case
45 lines of code changed in 1 file:
ENH: don't try to compile in-progress CLI
1 lines of code changed in 1 file:
ENH: reworked roi resampling procedure, now with just one resampling.
Eliminated inconsistency of roi extraction between gui and cli.
195 lines of code changed in 3 files:
BUG: incorrect thresholding for histogram calculation; uninitialized
resampling mode in CLI
1 lines of code changed in 1 file:
BUG: DefineSuperSampleSize must be independent of the MRML node
4 lines of code changed in 2 files:
ENH: initial commit for the command line module to reflect the updated
workflow; this one is just a copy of the original CL module
1 lines of code changed in 1 file:
STYLE: adjusted name of the segmentated volume
0 lines of code changed in 1 file:
STYLE: Connect() returns non-0 even if there's no error! Check error
code instead of return value.
0 lines of code changed in 1 file:
ENH: cleanup of ROI selection to avoid inconsistencies due to
conflicting updates, and to improve performance
0 lines of code changed in 2 files:
ENH: improve performance -- PropagateVolumeSelection is a very expensive way
to set up composite nodes!
0 lines of code changed in 2 files:
BUG: incorrect reference image for scan2 resampling
0 lines of code changed in 1 file:
BUG: somehow, resampling results end up under transform
0 lines of code changed in 1 file:
ENH: added error handling for remote scene downloading
0 lines of code changed in 1 file:
ENH: added the functionality to load tutorial data with one button click!
(Steve gets credit for this great idea!)
0 lines of code changed in 2 files:
ENH: Version numbering for shared libraries
0 lines of code changed in 1 file:
ENH: last major missing piece in logic for handling externally defined segmentation; hide volume rendering when leaving the module
0 lines of code changed in 4 files:
ENH: hopefully, most of the logic to handle externally defined segmentations
0 lines of code changed in 2 files:
ENH: gui+mrml to handle externally defined segmentation
0 lines of code changed in 2 files:
BUG: changes in the procedure for determining the voxel size for supersampled
volume were not propagated to the command line module
0 lines of code changed in 2 files:
BUG: removing fmin(), since it may not be compatible with win
0 lines of code changed in 1 file:
BUG: files left out of the previous commit by mistake
0 lines of code changed in 3 files:
ENH: functionality to disable ROI registration
0 lines of code changed in 1 file:
ENH: functionality to handle externally specified global transform and disabled
global registration
0 lines of code changed in 4 files:
ENH: GUI/MRML functionality to support registration choices
0 lines of code changed in 2 files:
ENH: install logo image data
0 lines of code changed in 1 file:
ENH: commiting changes to sync with 3-4 branch fixes
0 lines of code changed in 1 file:
BUG: interation parameter setup bogus
0 lines of code changed in 1 file:
COMP: adapt to change in slice controller configuration (scale is now indpenedent of entry)
0 lines of code changed in 2 files:
BUG: add a check to prevent layout reset to FourUp on Slicer startup
0 lines of code changed in 2 files:
ENH: namings for intermediate and analysis results revisited
41 lines of code changed in 2 files:
BUG: module output redirection back to normal
0 lines of code changed in 1 file:
BUG: removed unnecessary dependency on EMSegmenter
1 lines of code changed in 3 files:
ENH: extra check of the image data
4 lines of code changed in 1 file:
BUG: disabling output redirect trying to catch bug #440
2 lines of code changed in 1 file:
(38 more)