Directory Libs/vtkITK/

Directory Created:
2006-02-14 16:01
Total Files:
64
Deleted Files:
3
Lines of Code:
11817

[root]/Libs/vtkITK
            directory in repo Testing (3 files, 263 lines)
                directory in repo Tcl (2 files, 52 lines)

Lines of Code

Libs/vtkITK/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 306 (100.0%) 12392 (100.0%) 40.4
pieper 72 (23.5%) 3766 (30.4%) 52.3
bess 18 (5.9%) 2865 (23.1%) 159.1
alexy 38 (12.4%) 1966 (15.9%) 51.7
millerjv 42 (13.7%) 1963 (15.8%) 46.7
blezek 13 (4.2%) 1290 (10.4%) 99.2
naucoin 17 (5.6%) 378 (3.1%) 22.2
barre 12 (3.9%) 83 (0.7%) 6.9
lorensen 49 (16.0%) 72 (0.6%) 1.4
malaterre 4 (1.3%) 6 (0.0%) 1.5
andy 1 (0.3%) 3 (0.0%) 3.0
yumin 2 (0.7%) 0 (0.0%) 0.0
taox 28 (9.2%) 0 (0.0%) 0.0
jcfr 2 (0.7%) 0 (0.0%) 0.0
domibel 1 (0.3%) 0 (0.0%) 0.0
davisb 3 (1.0%) 0 (0.0%) 0.0
aylward 4 (1.3%) 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:

  • Libs/vtkITK: 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:

  • Libs/vtkITK: CMakeLists.txt (changed)
lorensen 2009-10-02 10:11 Rev.: 10567

BUG: label map filters expect integers.

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKIslandMath.cxx (changed)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Libs/vtkITK: CMakeLists.txt (changed)
millerjv 2009-07-29 09:41 Rev.: 10093

ENH: using resampling to get the second image into the coordinate frame of the first. This gets us progress, abort, and the linear fastpath through the resampling

139 lines of code changed in 1 file:

  • Libs/vtkITK: itkConstrainedValueMultiplicationImageFilter.h (new 139)
pieper 2009-06-10 15:49 Rev.: 9673

BUG: remove incorrect license info

0 lines of code changed in 4 files:

  • Libs/vtkITK: vtkITKLevelTracing3DImageFilter.h (changed), vtkITKLevelTracingImageFilter.h (changed), vtkITKNumericTraits.h (changed), vtkITKWandImageFilter.h (changed)
pieper 2009-04-29 15:59 Rev.: 9357

COMP: merge warning fixes from 3.4 release branch to trunk

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKIslandMath.cxx (changed)
pieper 2009-04-10 12:40 Rev.: 9138

BUG: uninitialized instance variable caused incorrect scene load behavior

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
pieper 2009-04-03 12:17 Rev.: 9034

BUG: fix capitlization issue in header filename (worked on windows, but not on unix)

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
pieper 2009-04-03 06:35 Rev.: 9032

BUG: remove unwanted DICOMParser from IO Factory and fix error macro bug trying to print null pointer

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKArchetypeImageSeriesReader.h (changed)
pieper 2009-03-30 10:18 Rev.: 9005

ENH: add progress methods for time consuming island operations

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKIslandMath.cxx (changed), vtkITKIslandMath.h (changed)
pieper 2009-03-25 18:01 Rev.: 8976

ENH: new ITK implementation of island operations to replace old code

288 lines of code changed in 3 files:

  • Libs/vtkITK: CMakeLists.txt (+1), vtkITKIslandMath.cxx (new 200), vtkITKIslandMath.h (new 87)
lorensen 2008-12-29 11:19 Rev.: 8206

COMP: warnings of various sorts.

2 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKBSplineTransform.cxx (+1), vtkITKBSplineTransform.h (+1 -1)
lorensen 2008-12-28 13:47 Rev.: 8201

COMP: warnings, mainly about possible use of variables that have not been assigned values.

1 lines of code changed in 1 file:

  • Libs/vtkITK: itkLevelTracingImageFilter.txx (+1)
pieper 2008-12-01 17:39 Rev.: 8019

BUG: include image spacing in the distance transform calculation

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKDistanceTransform.cxx (changed)
lorensen 2008-11-23 14:01 Rev.: 7961

COMP: various warnings.

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKArchetypeImageSeriesReader.h (changed)
lorensen 2008-11-21 12:20 Rev.: 7944

COMP: various warnings.

0 lines of code changed in 4 files:

  • Libs/vtkITK: itkTimeSeriesDatabase.txx (changed), itkTimeSeriesDatabaseHelper.h (changed), vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKBSplineTransform.cxx (changed)
pieper 2008-11-19 10:18 Rev.: 7913

COMP: handle long long types on linux 64 (apparently old design pattern did not work?)

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKDistanceTransform.cxx (changed)
pieper 2008-11-18 18:03 Rev.: 7903

ENH: update distance transform to get rid of vtkITKImageToImageFilterUSF and use simpler vtkSimpleImageFilter code

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKDistanceTransform.cxx (changed), vtkITKDistanceTransform.h (changed)
pieper 2008-11-17 14:58 Rev.: 7893

BUG: disable sorting dicom images by trigger time, since this does not match the volume definition for some MR files (additional tools will probably be needed).

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
lorensen 2008-11-12 15:09 Rev.: 7852

COMP: warnings.

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.h (changed)
naucoin 2008-11-10 10:26 Rev.: 7823

BUG: removed duplicate source file

0 lines of code changed in 1 file:

  • Libs/vtkITK: CMakeLists.txt (changed)
pieper 2008-11-07 11:22 Rev.: 7807

ENH: new approach to wand filter

0 lines of code changed in 3 files:

  • Libs/vtkITK: CMakeLists.txt (changed), vtkITKWandImageFilter.cxx (changed), vtkITKWandImageFilter.h (changed)
naucoin 2008-10-15 10:19 Rev.: 7690

BUG: add in bounds checking before accessing the array

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
pieper 2008-10-12 13:27 Rev.: 7669

ENH: add GetInput method for completeness

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKImageToImageFilter.h (changed)
pieper 2008-10-09 17:46 Rev.: 7639

BUG: wrong output type for the cast for this combination

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKImageToImageFilterUSF.h (changed)
pieper 2008-10-09 17:15 Rev.: 7638

ENH: infrastructure for new distance transform filter

315 lines of code changed in 4 files:

  • Libs/vtkITK: CMakeLists.txt (changed), vtkITKDistanceTransform.cxx (new 160), vtkITKDistanceTransform.h (new 66), vtkITKImageToImageFilterUSF.h (new 89)
yumin 2008-09-26 14:58 Rev.: 7610

ENH: Modified the mrml save dialog with the new design and functionalities. Here is the detail: http://www.slicer.org/slicerWiki/index.php/User:Barre/TODO

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKImageWriter.cxx (changed), vtkITKImageWriter.h (changed)
pieper 2008-09-22 10:23 Rev.: 7598

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:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (+1 -1)
naucoin 2008-09-08 13:21 Rev.: 7544

ENH: use a const char for the file name

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKArchetypeImageSeriesReader.h (changed)
pieper 2008-08-21 15:48 Rev.: 7476

ENH: make reset method public and add documentation

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.h (changed)
taox 2008-08-21 10:04 Rev.: 7475

ENH: make a couple of functions public so other class can access FileNames.

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.h (changed)
taox 2008-08-20 22:09 Rev.: 7473

ENH: added new function const char* GetFileName( unsigned int n ).

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKArchetypeImageSeriesReader.h (changed)
taox 2008-08-14 11:30 Rev.: 7437

ENH: Is this an ENH!? Content time may not be a good field to separate sub sequences.

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
taox 2008-08-13 22:03 Rev.: 7431

ENH: By default, assemble a volume that containing Archetype.

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKArchetypeImageSeriesReader.h (changed)
pieper 2008-08-07 15:22 Rev.: 7408

BUG: avoid crash when testing the header of a non-image data file

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
taox 2008-08-07 12:18 Rev.: 7407

ENH: Added a new function for Archetype Reader so that user can directly add file names (one at a time for vtk wrapping). One user set file names, only these files given by the user will be analyzed.

0 lines of code changed in 2 files:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed), vtkITKArchetypeImageSeriesReader.h (changed)
taox 2008-08-06 14:41 Rev.: 7404

BUG: gdcmIO does not throw an exception even if it can not read a file.

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.h (changed)
taox 2008-08-06 14:17 Rev.: 7403

BUG: gdcmIO does not throw an exception even if it can not read a file.

0 lines of code changed in 1 file:

  • Libs/vtkITK: vtkITKArchetypeImageSeriesReader.cxx (changed)
bess 2008-07-31 21:09 Rev.: 7378

ENH: Removed m_AppendMode and used superclass's member functions to access it.

0 lines of code changed in 2 files:

  • Libs/vtkITK: itkEncodedTransformFileWriter.cxx (changed), itkEncodedTransformFileWriter.h (changed)

(109 more)

Generated by StatSVN 0.5.0