[root]/Modules/EMSegment
Algorithm
(43 files, 19913 lines)
CommandLineApplication
(7 files, 1646 lines)
MRML
(30 files, 6547 lines)
Registration
(7 files, 2147 lines)
Testing
(10 files, 2803 lines)
TestData
(1 files, 26 lines)
MiscVolumeData
(6 files, 39 lines)
TutorialTest
(4 files, 558 lines)
StandardData
(4 files, 26 lines)
VolumeData
(14 files, 97 lines)
TutorialTest2
(5 files, 1010 lines)
StandardData
(10 files, 65 lines)
VolumeData
(4 files, 26 lines)
Atlas
(24 files, 156 lines)
Target
(8 files, 52 lines)
Wizard
(27 files, 13316 lines)
Help
(0 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 222 (100.0%) | 10854 (100.0%) | 48.8 |
| davisb | 149 (67.1%) | 10268 (94.6%) | 68.9 |
| sylvain | 17 (7.7%) | 340 (3.1%) | 20.0 |
| barre | 13 (5.9%) | 119 (1.1%) | 9.1 |
| pieper | 10 (4.5%) | 45 (0.4%) | 4.5 |
| millerjv | 6 (2.7%) | 35 (0.3%) | 5.8 |
| hyang | 2 (0.9%) | 23 (0.2%) | 11.5 |
| lorensen | 4 (1.8%) | 16 (0.1%) | 4.0 |
| kerstin | 1 (0.5%) | 4 (0.0%) | 4.0 |
| tgl | 9 (4.1%) | 2 (0.0%) | 0.2 |
| naucoin | 2 (0.9%) | 2 (0.0%) | 1.0 |
| yumin | 3 (1.4%) | 0 (0.0%) | 0.0 |
| taox | 1 (0.5%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (0.9%) | 0 (0.0%) | 0.0 |
| domibel | 1 (0.5%) | 0 (0.0%) | 0.0 |
| blezek | 1 (0.5%) | 0 (0.0%) | 0.0 |
| alexy | 1 (0.5%) | 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:
BUG: tests were failing because of the vtkTeem library included in Slicer3_Libs_LIBRARIES
0 lines of code changed in 1 file:
BUG: build and run new segmentation parameters failed. note that new test has been renamed
0 lines of code changed in 1 file:
BUG: preprocessing manager test was failing
0 lines of code changed in 1 file:
ENH: Version numbering for shared libraries
0 lines of code changed in 1 file:
ENH: show the histogram of the target image in step 5
259 lines of code changed in 3 files:
ENH: compute the eigenvectors of the covariance matrix to display the gaussian distribution
0 lines of code changed in 1 file:
ENH: load a label map to accurately create the class distributions
0 lines of code changed in 3 files:
ENH: remove deleted files from CMakeLists.txt
0 lines of code changed in 1 file:
COMP: add vtkGaussian2DWidget.cxx to the list of source files. This class was added in the EMSegment Wizard to model the intensity classes using Gaussian distributions.
36 lines of code changed in 1 file:
ENH: create features to improve the usability of the EM Module. The goal is to enable the clinician to perform segmentation by expectation maximization in an efficient fashion. Among other features, an histogram visualization window has been implemented to let the user select the different percentages for the EM classes within an intuitive user interface.
45 lines of code changed in 5 files:
STYLE: fix spelling errors identified by Dominique as part of the debian checkin process
0 lines of code changed in 1 file:
COMP: various warnings.
0 lines of code changed in 1 file:
ENH: Enable user to specify a color for each leaf node of the anatomical tree (step 2 of EMSegment). Add some GUI components to vtkEMSegmentAnatomicalStructureStep. Add XML IO of colormap parameter to vtkMRMLEMSGlobalParametersNode and vtkEMSegmentMRMLManager.
23 lines of code changed in 2 files:
ENH: update documentation
0 lines of code changed in 1 file:
ENH: update documentation
0 lines of code changed in 1 file:
ENH: oops
1 lines of code changed in 1 file:
COMP: minor. One of the reason Slicer3 is so slow to compile is that so many classes include STL headers in their own header, instead of their implementation file (PIMPL). Some of those headers are actually not needed anymore by said classes, or were put there "just in case I need a map, vector, list, etc.". The more it happens, the slower the build process gets, and the slower the dependencies are computed/resolved. Try to fix some.
8 lines of code changed in 4 files:
ENH: Plugins and Modules have specific location for their binairies/dll, different from the usual bin/ and lib/ (i.e. lib/Slicer3/Plugins, lib/Slicer3/Modules). This was achieved by setting LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH from the slicer3_set_default_modules_output_path and slicer3_set_default_plugins_output_path macro, but it is a dangerous practice to override a global variable, as it propagates to subtrees. As a result, SlicerTractographySeeding, which combines a module and a CLP in the same CMakeLists, was not built to the proper directory; ExtractSkeleton was not output in the right location either, and several tests ended up in Plugins instead of bin/ (GaussianBlurImageFilterTest, OrientImageTest). Fix this by creating a macro that will set the LIBRARY_OUTPUT_DIRECTORY and RUNTIME_OUTPUT_DIRECTORY explicitly on a *target* basis, using SET_TARGET_PROPERTIES. This removes the side-effects described above.
2 lines of code changed in 1 file:
ENH: added slicer3_install_modules and slicer3_install_plugins macro to hide the big INSTALL() command that was used to install plugins/modules; this is more elegant, and enable us to have better control on installation by modifying just one file.
1 lines of code changed in 1 file:
BUG: MRMLManager not initialized when code was moved to be a loadable module
2 lines of code changed in 1 file:
COMP: needed kww header to access internal widget
1 lines of code changed in 1 file:
ENH: Slicer3 Spring Installation Clean Up
107 lines of code changed in 3 files:
COMP: EMSegment depends on Volumes
0 lines of code changed in 1 file:
ENH: adding dependency checking (but not sorting) to LoadableModule lib. Adding EMSegment, MRAblation, RealTimeImaging, VolumeRendering, WFEngineModule, LabelStatistics as loadable modules
2 lines of code changed in 6 files:
STYLE: remove redundance reference to Volumes
0 lines of code changed in 1 file:
ENH results of merge with 6049:6469 from branches/tgl_loadable_modules. Adds GenerateLM to create entry points for loadable module support via a text file and CMake macro. WFEngine, NeuroNav, Qdec and GAD are setup, other modules have text files, but the macro in the CMakeLists file is commented out. Updated Slicer3_main, the modules above will only be loaded if the DLL is found at run-time. Lastly made a change to vtkSlicerViewerWidget, check for a NULL ModelHierarchyLogic pointer before continuing, which might not be the right thing to do.
0 lines of code changed in 2 files:
ENH: add popup to EMSeg to warn against using images of differnt voxel types
0 lines of code changed in 2 files:
BUG: fix Mantis bug number 217:Problems changing atlas images after saving and reloading parameters
0 lines of code changed in 1 file:
ENH: less confusion for user by adding a popup warning when sibling nodes do not sum to unity
0 lines of code changed in 2 files:
ENH: add extra info for EMSeg ROI warning
0 lines of code changed in 1 file:
BUG: Fix problems with adding and removing channels in EMSegmenter, specifically bugs 179 and 181
0 lines of code changed in 4 files:
ENH: enable multiple storage nodes, following the template of multiple display nodes. Needed to deal more gracefully with model overlay files which should have their own separate storage nodes. The change is pervasive due to protecting SetStorageNodeID, use SetAndObserveStorageNodeID
0 lines of code changed in 1 file:
ENH: Implemented the new option to load a single file from a series.
0 lines of code changed in 1 file:
BUG: Need to include the Volumes directory as vtkSlicerVolumesGUI is now in this module rather than SlicerBaseGUI
0 lines of code changed in 1 file:
ENH: re-arranging volumes modul
4 lines of code changed in 1 file:
COMP: apply patches provided by Hans
2 lines of code changed in 2 files:
COMP: pass in a vtkIndent to PrintSelf
2 lines of code changed in 1 file:
ENH: Changes in the Slicer3 installation layout to simplify navigation. Most things will now try install themselves under <Installation Directory>/lib/<Package> or <Installation Directory>/include/<Package>. For example, <Installation Directory>/lib/Slicer3, <Installation Directory>/lib/MRML, <Installation Directory>/lib/ModuleDescriptionParser. This allows setting include and library paths consistently using ../<SomeOtherPackage> or ../../include/<SomeOtherPackage>, etc.
2 lines of code changed in 1 file:
(92 more)