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

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 151 (100.0%) | 2496 (100.0%) | 16.5 |
| alexy | 86 (57.0%) | 2046 (82.0%) | 23.7 |
| pieper | 15 (9.9%) | 181 (7.3%) | 12.0 |
| wjp@bwh.harvard.edu | 12 (7.9%) | 97 (3.9%) | 8.0 |
| tgl | 12 (7.9%) | 65 (2.6%) | 5.4 |
| barre | 8 (5.3%) | 56 (2.2%) | 7.0 |
| jcfr | 4 (2.6%) | 22 (0.9%) | 5.5 |
| millerjv | 3 (2.0%) | 8 (0.3%) | 2.6 |
| naucoin | 3 (2.0%) | 7 (0.3%) | 2.3 |
| andy | 4 (2.6%) | 7 (0.3%) | 1.7 |
| malaterre | 1 (0.7%) | 6 (0.2%) | 6.0 |
| freudling | 1 (0.7%) | 1 (0.0%) | 1.0 |
| lorensen | 2 (1.3%) | 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: The directory BASE/GUI/Qt is now excluded from the build process. For now, the code is left there for reference purposes. Note: Doing so removed most of the detected memory leaks.
22 lines of code changed in 2 files:
ENH: Qt GAD module
0 lines of code changed in 1 file:
ENH: Qt GAD module
0 lines of code changed in 2 files:
ENH: Qt GAD module
0 lines of code changed in 1 file:
ENH: Qt GAD module
366 lines of code changed in 4 files:
BUG: filled in missing categories
5 lines of code changed in 1 file:
COMP: many warnings removed. STYLE: mainly indentation.
0 lines of code changed in 1 file:
ENH using XML files to show how it can be done
2 lines of code changed in 3 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
53 lines of code changed in 3 files:
BUG: updating module name so that the derived name for TCL init will match that already in use
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 4 files:
ENH: add missing lib
0 lines of code changed in 1 file:
ENH: allow a module (Modules/GradientAnisotropicDiffusionFilter for now) to be built in a standalone fashion against eithera Slicer3 build or Slicer3 installed. Update the config files accordingly, add missing installation rules, etc. Also unscreamify and indent many CMakeLists.txt in the process.
0 lines of code changed in 2 files:
ENH: Results of merge from branches/tgl_loadable_modules 5432:6047. Loadable Module support added, GAD is the only loadable module at this time. To enable LM, comment out the #define LOADABLEMODULESDEBUG line.
63 lines of code changed in 4 files:
ENH: Added the first hyperlinks to slicer, to be continued
1 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:
ENH: Update INSTALL_* commands to INSTALL() commands.
4 lines of code changed in 1 file:
ENH: made mrml nodes XML attribute writting consistent
5 lines of code changed in 1 file:
BUG: Removed references to empty directory, ModulesBaseClasses.
0 lines of code changed in 1 file:
ENH: modified GUIs to use new Help & About frame
0 lines of code changed in 1 file:
ENH: cleanup of vtkMRMLGradientAnisotropicDiffusionFilterNode
0 lines of code changed in 2 files:
ENH: fixed assorted memory leaks
10 lines of code changed in 3 files:
ENH: added Volume.CopyOrienation, cleanup for GAD
23 lines of code changed in 4 files:
BUG: Wrong symbols for include paths for ITK and VTK
2 lines of code changed in 1 file:
ENH: adapted modules GUIs to use vtkSlicerModuleCollapsibleFrames instead of vtkKWFrameWithLabels
20 lines of code changed in 1 file:
ENH: don't set the ID on nodes, let the MRML scene do it
1 lines of code changed in 1 file:
BUG: cleaned up node creation and deletion semantics for clean shutdown - now scene keep registered pointers to each of the node types it is told about with RegisterNodeClass. These template nodes are unregistered when the scene is destroyed.
24 lines of code changed in 2 files:
ENH: added Observer Manager and changed GUI Component to use it
3 lines of code changed in 1 file:
ENH: Show GAD parameters in the editor
1 lines of code changed in 1 file:
BUG: floor and cast to int the double value passed to SetNumberOfIterations, to remove a compiler warning
1 lines of code changed in 1 file:
BUG: fixing missing Deletes
2 lines of code changed in 1 file:
ENH: more error checking and leak prevention
1 lines of code changed in 1 file:
ENH: added SetParent(NULL) to remove memory leaks
8 lines of code changed in 2 files:
BUG: fixed attribute parsing
2 lines of code changed in 1 file:
ENH: fleshed out the ScriptedModule interface and used it for a test for the editor module interface
1 lines of code changed in 1 file:
ENH: added None to vtkSlicerNodeSelectorWidget
1 lines of code changed in 1 file:
(36 more)