Directory Modules/Statistics/LabelStatistics/

Directory Created:
2007-11-15 18:19
Total Files:
11
Deleted Files:
1
Lines of Code:
1405

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

Lines of Code

Modules/Statistics/LabelStatistics/ Lines of Code

Developers

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

Most Recent Commits

jcfr 2009-12-08 18:34 Rev.: 11226

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:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (changed)
jcfr 2009-12-07 23:15 Rev.: 11209

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:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (changed)
pieper 2009-03-30 12:11 Rev.: 9007

BUG: add scrollbars to table

0 lines of code changed in 2 files:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (changed), vtkLabelStatisticsGUI.h (changed)
pieper 2009-03-01 13:49 Rev.: 8794

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:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (+3 -3), vtkLabelStatisticsLogic.cxx (+5 -5), vtkMRMLLabelStatisticsNode.h (+3 -3)
lorensen 2008-12-30 10:06 Rev.: 8218

COMP: warnings.

2 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsLogic.cxx (+2 -2)
lorensen 2008-12-27 11:34 Rev.: 8192

COMP: many warnings removed. STYLE: mainly indentation.

0 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (changed)
pieper 2008-11-13 13:02 Rev.: 7870

BUG: oops, should be *Volume* not *Area*

0 lines of code changed in 3 files:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (changed), vtkLabelStatisticsLogic.cxx (changed), vtkMRMLLabelStatisticsNode.h (changed)
pieper 2008-11-13 12:55 Rev.: 7869

ENH: add area calculation to the calculated statistics

0 lines of code changed in 5 files:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (changed), vtkLabelStatisticsGUI.h (changed), vtkLabelStatisticsLogic.cxx (changed), vtkLabelStatisticsLogic.h (changed), vtkMRMLLabelStatisticsNode.h (changed)
barre 2008-05-27 17:44 Rev.: 6889

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:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (+2 -3)
barre 2008-05-26 10:17 Rev.: 6851

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:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (+1 -5)
barre 2008-05-20 02:29 Rev.: 6772

ENH: Slicer3 Spring Installation Clean Up

63 lines of code changed in 3 files:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (+60 -80), vtkLabelStatistics.h (+2 -2), vtkLabelStatisticsConfigure.h.in (+1 -10)
tgl 2008-05-08 19:35 Rev.: 6667

ENH: missed this module description file with the last checkin

2 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: LabelStatistics.txt (new 2)
tgl 2008-05-08 18:50 Rev.: 6666

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:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (changed), vtkLabelStatisticsGUI.cxx (changed), vtkLabelStatisticsGUI.h (changed)
freudling 2008-02-06 10:01 Rev.: 5713

ENH: Added the first hyperlinks to slicer, to be continued

1 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (+1 -1)
kquintus 2007-12-20 17:14 Rev.: 5306

ENH: took copy to clipboard feature out for now

22 lines of code changed in 2 files:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (+21 -20), vtkLabelStatisticsGUI.h (+1 -1)
kquintus 2007-11-28 18:33 Rev.: 4994

ENH: Turn LabelStatistics on by default

0 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (changed)
kquintus 2007-11-16 16:18 Rev.: 4854

ENH: removed debug leaks, fixed SaveToFile funtionality, removed std::cout s

28 lines of code changed in 2 files:

  • Modules/Statistics/LabelStatistics: vtkLabelStatisticsGUI.cxx (+21 -25), vtkLabelStatisticsLogic.cxx (+7 -7)
kquintus 2007-11-15 18:32 Rev.: 4847

ENH: stupid me.

0 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt~ (del)
kquintus 2007-11-15 18:29 Rev.: 4845

ENH: renamed VolumeMath to LabelStatistics

1329 lines of code changed in 10 files:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt~ (new), vtkLabelStatistics.h (new 31), vtkLabelStatisticsConfigure.h.in (new 20), vtkLabelStatisticsGUI.cxx (new 511), vtkLabelStatisticsGUI.h (new 126), vtkLabelStatisticsLogic.cxx (new 236), vtkLabelStatisticsLogic.h (new 72), vtkLabelStatisticsWin32Header.h (new 34), vtkMRMLLabelStatisticsNode.cxx (new 188), vtkMRMLLabelStatisticsNode.h (new 111)
kquintus 2007-11-15 18:19 Rev.: 4840

ENH: moved VolumeMath module to LabelStatistics

111 lines of code changed in 1 file:

  • Modules/Statistics/LabelStatistics: CMakeLists.txt (new 111)
Generated by StatSVN 0.5.0