[root]/Modules/Statistics/LabelStatistics
Testing
(1 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 44 (100.0%) | 1572 (100.0%) | 35.7 |
| kquintus | 17 (38.6%) | 1490 (94.8%) | 87.6 |
| barre | 5 (11.4%) | 66 (4.2%) | 13.2 |
| pieper | 13 (29.5%) | 11 (0.7%) | 0.8 |
| tgl | 4 (9.1%) | 2 (0.1%) | 0.5 |
| lorensen | 2 (4.5%) | 2 (0.1%) | 1.0 |
| freudling | 1 (2.3%) | 1 (0.1%) | 1.0 |
| jcfr | 2 (4.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: add scrollbars to table
0 lines of code changed in 2 files:
BUG: use double rather than int to store the min and max of the volume. Also COMP: fix warnings
11 lines of code changed in 3 files:
COMP: warnings.
2 lines of code changed in 1 file:
COMP: many warnings removed. STYLE: mainly indentation.
0 lines of code changed in 1 file:
BUG: oops, should be *Volume* not *Area*
0 lines of code changed in 3 files:
ENH: add area calculation to the calculated statistics
0 lines of code changed in 5 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:
ENH: Slicer3 Spring Installation Clean Up
63 lines of code changed in 3 files:
ENH: missed this module description file with the last checkin
2 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
0 lines of code changed in 3 files:
ENH: Added the first hyperlinks to slicer, to be continued
1 lines of code changed in 1 file:
ENH: took copy to clipboard feature out for now
22 lines of code changed in 2 files:
ENH: Turn LabelStatistics on by default
0 lines of code changed in 1 file:
ENH: removed debug leaks, fixed SaveToFile funtionality, removed std::cout s
28 lines of code changed in 2 files:
ENH: stupid me.
0 lines of code changed in 1 file:
ENH: renamed VolumeMath to LabelStatistics
1329 lines of code changed in 10 files:
ENH: moved VolumeMath module to LabelStatistics
111 lines of code changed in 1 file: