[root]/Libs/FreeSurfer
Testing
(6 files, 2718 lines)
TestData
(2 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 73 (100.0%) | 6300 (100.0%) | 86.3 |
| naucoin | 58 (79.5%) | 6121 (97.2%) | 105.5 |
| barre | 4 (5.5%) | 92 (1.5%) | 23.0 |
| pieper | 3 (4.1%) | 81 (1.3%) | 27.0 |
| millerjv | 2 (2.7%) | 6 (0.1%) | 3.0 |
| lorensen | 2 (2.7%) | 0 (0.0%) | 0.0 |
| jcfr | 2 (2.7%) | 0 (0.0%) | 0.0 |
| domibel | 1 (1.4%) | 0 (0.0%) | 0.0 |
| aylward | 1 (1.4%) | 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:
COMP: look at return values from string and file calls
93 lines of code changed in 4 files:
ENH: handle more datatypes in lookup table
76 lines of code changed in 1 file:
BUG: set reasonable table ranges, used to display scalar bar widget
0 lines of code changed in 1 file:
BUG: return the table range, set the Heat high threshold
0 lines of code changed in 1 file:
BUG: return the range, todo: figure out why this doesn't display properly in vtkScalarBarActor
0 lines of code changed in 1 file:
ENH: Version numbering for shared libraries
0 lines of code changed in 1 file:
BUG: was missing check for 0 vertices, which can happen if the file is empty
0 lines of code changed in 1 file:
COMP: various warnings.
0 lines of code changed in 2 files:
BUG: return 1 if succeed on read, 0 if fail
0 lines of code changed in 2 files:
COMP: reducing compiler warnings
0 lines of code changed in 1 file:
BUG: no default value - due to poor switch/case construction
0 lines of code changed in 1 file:
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.
8 lines of code changed in 2 files:
COMP: removed unused variable
0 lines of code changed in 1 file:
ENH: Slicer3 Spring Installation Clean Up
84 lines of code changed in 1 file:
ENH: experimental script to read FreeSurfer .label file and display as a contour widget. Only works with VTK 5.2 and up.
116 lines of code changed in 1 file:
ENH: add support for FreeSurfer .label files
332 lines of code changed in 3 files:
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: 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:
BUG: check that the vertex index is in range
8 lines of code changed in 1 file:
BUG: move freesurfer colour files to a more logical place in the binary and install versions
0 lines of code changed in 1 file:
ENH: Update INSTALL_* commands to INSTALL() commands.
4 lines of code changed in 1 file:
STYLE: fixed tabs in ReadEmbeddedColorTable
227 lines of code changed in 1 file:
ENH: read in new style colour tables as well
156 lines of code changed in 1 file:
BUG: Need opacity to be one for all colours but black
771 lines of code changed in 2 files:
ENH: fixes for the cpacked output directory structure
0 lines of code changed in 1 file:
ENH: added the colour files as first class citizens, copy them to build dir, use them and the new methods in the query atlas
818 lines of code changed in 3 files:
ENH: removed direct access to cerr from many classes -- please use vtkErrorMacro or vtkDebugMacro for this purpose. The new launcher requires text feedback to go to cout so that all messages are printed to the user in the correct order
5 lines of code changed in 1 file:
STYLE: fixed indentation
25 lines of code changed in 1 file:
BUG: fixed some problems with unsigned char reading. STYLE: fixed indentation and doc
68 lines of code changed in 1 file:
STYLE: updated documentation
54 lines of code changed in 1 file:
ENH: Added Labels type, still debugging it. Work around for RedBlue and BlueRed. Support unsigned char input volumes when mapping through the table
67 lines of code changed in 2 files:
BUG: make it a subclass of a look up table, so that can cast it in the MRML nodes properly, take out number of colours as it's defined in the superclass
3 lines of code changed in 1 file:
ENH: call the superclass print, fixed typo in error macro
2 lines of code changed in 1 file:
ENH: make the old constants an enum
0 lines of code changed in 2 files:
BUG: moved const ints into enum
23 lines of code changed in 2 files:
BUG: make the magic numbers an enum, was getting a clash between header files
11 lines of code changed in 2 files:
ENH: Added the FreeSurfer W surface file reader
269 lines of code changed in 3 files:
ENH: added the freesurfer look up table, and a script to show thickness on lh.pial, renamed testAnnot.tcl to showAnnotation.tcl, as it's not a true test
581 lines of code changed in 4 files:
(3 more)