[root]/Libs/vtkTeem
Testing
(1 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 218 (100.0%) | 15518 (100.0%) | 71.1 |
| alexy | 67 (30.7%) | 8942 (57.6%) | 133.4 |
| rjosest | 34 (15.6%) | 3340 (21.5%) | 98.2 |
| lauren | 20 (9.2%) | 3126 (20.1%) | 156.3 |
| barre | 4 (1.8%) | 52 (0.3%) | 13.0 |
| pieper | 50 (22.9%) | 38 (0.2%) | 0.7 |
| lorensen | 14 (6.4%) | 6 (0.0%) | 0.4 |
| hliu | 2 (0.9%) | 6 (0.0%) | 3.0 |
| millerjv | 2 (0.9%) | 5 (0.0%) | 2.5 |
| naucoin | 7 (3.2%) | 3 (0.0%) | 0.4 |
| samset | 1 (0.5%) | 0 (0.0%) | 0.0 |
| maddah | 1 (0.5%) | 0 (0.0%) | 0.0 |
| kerstin | 3 (1.4%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (0.9%) | 0 (0.0%) | 0.0 |
| hjohnson | 2 (0.9%) | 0 (0.0%) | 0.0 |
| domibel | 1 (0.5%) | 0 (0.0%) | 0.0 |
| aylward | 8 (3.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:
BUG-FIXED: fixed fiber tracts loosing color when seeding from no tracts region and then going back to tracts present
1 lines of code changed in 1 file:
ENH: expose teem option to shift negative eigenvalues per request from Mahnaz and Jim. Off by default per discussion with Casey
0 lines of code changed in 2 files:
BUG: models as fiber bundles do not need to have tensor data associating with them to be loaded in Slicer.
0 lines of code changed in 1 file:
ENH: Version numbering for shared libraries
0 lines of code changed in 1 file:
BUG: fix bug 453: show the scalar operation value rather than the tensor value at each pixel on mouse over . Also show operation abbreviation
0 lines of code changed in 2 files:
BUG-FIXED: made fiducial seeding pay attention to integration step parameter
0 lines of code changed in 1 file:
BUG-FIXED: handle reading double tensors
37 lines of code changed in 2 files:
BUG: fixed memory leaks.
5 lines of code changed in 1 file:
BUG: freed allocated memory in RequestData().
1 lines of code changed in 1 file:
COMP: warnings of various sorts.
2 lines of code changed in 2 files:
ENH: added new functionality to tractography seeding, fixed snapshot node storing internal nodes in the scene.
0 lines of code changed in 1 file:
COMP: various warnings.
0 lines of code changed in 4 files:
COMP: change from TEEM to Teem for compatibility with current svn trunk of teem
0 lines of code changed in 24 files:
COMP: gcc4.3 warnings.
0 lines of code changed in 3 files:
BUG: set all readers and storage nodes to use native origin by default to be consistent with GUI and to work correctly for non-centered data going to command line modules
1 lines of code changed in 1 file:
ENH: reverted changes that broke the fiducial seeding
0 lines of code changed in 4 files:
COMP: reducing compiler warnings
0 lines of code changed in 2 files:
COMP: reducing compiler warnings
0 lines of code changed in 2 files:
BUG: Uninitialized var - due to poorly designed switch statement
0 lines of code changed in 1 file:
BUG: accidently commited a file that had debugging code in it. Reverted to previous version.
0 lines of code changed in 1 file:
COMP: Removed compiler warnings from generated CLP files.
0 lines of code changed in 1 file:
BUG: Bail out when data pointer is NULL
0 lines of code changed in 1 file:
COMP: fix warnings about SQRT
6 lines of code changed in 2 files:
ENH: make sure all sub-project in Libs/ can be built in a standalone fashion (remove 99% of the refs to Slicer3, macros, etc). Make sure all external toolkits are properly included, and fix some issues in MRML with respect to TEEM/vtkTeem.
7 lines of code changed in 1 file:
COMP: removing unused variables
3 lines of code changed in 1 file:
ENH: Slicer3 Spring Installation Clean Up
45 lines of code changed in 1 file:
ENH: fixed ImageLabelCombine
0 lines of code changed in 1 file:
ENH: fixed ImageLabelCombine CLI module and vtkTEEM classes
0 lines of code changed in 1 file:
ENH: added ImageLabelCombine CLI module and vtkTEEM classes
345 lines of code changed in 3 files:
BUG: fix thread safety problem with tensor estimation (backwards compatibility bug in VTK - GetRange now uses Information hash tables that are not thread safe)
0 lines of code changed in 2 files:
BUG: fixed crash in the constructor by changing vtkTransform *Transform = vtkTransform::New(); to this->Transform = vtkTransform::New();
0 lines of code changed in 1 file:
COMP: Increments should be vtkIdType
0 lines of code changed in 1 file:
BUG: provide missing method implementation
0 lines of code changed in 1 file:
ENH: New class to rotate tensors.
513 lines of code changed in 3 files:
ENH: update for CMake 2.6
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 1 file:
ENH: added colors to scalar, misc fixes
0 lines of code changed in 2 files:
COMP: Fixed unused variables warning
0 lines of code changed in 2 files:
(65 more)