Directory Modules/ChangeTracker/

Total Files:
12
Deleted Files:
11
Lines of Code:
3777

[root]/Modules/ChangeTracker
            directory in repo CommandLineApplication (3 files, 1055 lines)
            directory in repo CommandLineApplicationNew (3 files, 963 lines)
            directory in repo DeformableMetric (3 files, 269 lines)
            directory in repo Filters (10 files, 4525 lines)
            directory in repo ImageData (2 files, 201 lines)
            directory in repo Tcl (2 files, 2250 lines)
            directory in repo Testing (2 files, 93 lines)
            Folder removed from repo TumorDiameterEstimation (0 files, 0 lines)
                Folder removed from repo Code (0 files, 0 lines)
                    Folder removed from repo LookAt (0 files, 0 lines)
                Folder removed from repo Data (0 files, 0 lines)
            directory in repo Wizard (16 files, 5395 lines)

Lines of Code

Modules/ChangeTracker/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 138 (100.0%) 3939 (100.0%) 28.5
fedorov 120 (87.0%) 3935 (99.9%) 32.7
lorensen 6 (4.3%) 4 (0.1%) 0.6
pohl 5 (3.6%) 0 (0.0%) 0.0
pieper 2 (1.4%) 0 (0.0%) 0.0
naucoin 2 (1.4%) 0 (0.0%) 0.0
jcfr 2 (1.4%) 0 (0.0%) 0.0
domibel 1 (0.7%) 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/ChangeTracker: 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/ChangeTracker: CMakeLists.txt (changed)
fedorov 2009-10-30 09:38 Rev.: 10804

ENH: remove ChangeTracker tests. They are not testing the functionality used
by GUI. Testing needs to be updated to reflect the updated processing
workflow.

3 lines of code changed in 1 file:

  • Modules/ChangeTracker: CMakeLists.txt (+3 -3)
fedorov 2009-10-30 09:18 Rev.: 10803

ENH: use cubic interpolation instead of linear

1 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+1 -1)
fedorov 2009-10-28 15:53 Rev.: 10777

BUG: demons registration discards orientation, so unless the input is axial,
the results of deformable analysis are garbage. Fix this in the ROI extraction
routine to enforce axial orientation.

4 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+4 -4)
fedorov 2009-10-28 11:49 Rev.: 10771

BUG: missed resample factor

1 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+1)
fedorov 2009-10-28 11:32 Rev.: 10770

BUG: remove non-portable fmin(), ENH: roi extraction debugging code, just in case

45 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+45 -1)
fedorov 2009-10-28 10:27 Rev.: 10768

ENH: don't try to compile in-progress CLI

1 lines of code changed in 1 file:

  • Modules/ChangeTracker: CMakeLists.txt (+1 -1)
fedorov 2009-10-26 23:37 Rev.: 10761

ENH: reworked roi resampling procedure, now with just one resampling.
Eliminated inconsistency of roi extraction between gui and cli.

195 lines of code changed in 3 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+191 -13), vtkChangeTrackerLogic.h (+2), vtkMRMLChangeTrackerNode.cxx (+2 -2)
fedorov 2009-10-17 22:21 Rev.: 10681

BUG: incorrect thresholding for histogram calculation; uninitialized
resampling mode in CLI

1 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+1 -1)
fedorov 2009-10-14 14:52 Rev.: 10645

BUG: DefineSuperSampleSize must be independent of the MRML node

4 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+3 -3), vtkChangeTrackerLogic.h (+1 -1)
fedorov 2009-10-14 12:10 Rev.: 10640

ENH: initial commit for the command line module to reflect the updated
workflow; this one is just a copy of the original CL module

1 lines of code changed in 1 file:

  • Modules/ChangeTracker: CMakeLists.txt (+1 -1)
fedorov 2009-09-25 09:59 Rev.: 10528

STYLE: adjusted name of the segmentated volume

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed)
fedorov 2009-09-10 14:19 Rev.: 10455

STYLE: Connect() returns non-0 even if there's no error! Check error
code instead of return value.

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed)
fedorov 2009-09-09 12:50 Rev.: 10430

ENH: cleanup of ROI selection to avoid inconsistencies due to
conflicting updates, and to improve performance

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkMRMLChangeTrackerNode.cxx (changed), vtkMRMLChangeTrackerNode.h (changed)
fedorov 2009-08-28 17:50 Rev.: 10392

ENH: improve performance -- PropagateVolumeSelection is a very expensive way
to set up composite nodes!

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed), vtkChangeTrackerGUI.h (changed)
fedorov 2009-08-28 09:39 Rev.: 10384

BUG: incorrect reference image for scan2 resampling

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed)
fedorov 2009-08-27 17:33 Rev.: 10381

BUG: somehow, resampling results end up under transform

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed)
fedorov 2009-08-19 11:31 Rev.: 10308

ENH: added error handling for remote scene downloading

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed)
fedorov 2009-08-19 11:14 Rev.: 10307

ENH: added the functionality to load tutorial data with one button click!
(Steve gets credit for this great idea!)

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed), vtkChangeTrackerGUI.h (changed)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: CMakeLists.txt (changed)
fedorov 2009-08-14 15:42 Rev.: 10261

ENH: last major missing piece in logic for handling externally defined segmentation; hide volume rendering when leaving the module

0 lines of code changed in 4 files:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed), vtkChangeTrackerGUI.h (changed), vtkChangeTrackerLogic.cxx (changed), vtkChangeTrackerLogic.h (changed)
fedorov 2009-08-14 11:07 Rev.: 10248

ENH: hopefully, most of the logic to handle externally defined segmentations

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed), vtkChangeTrackerLogic.h (changed)
fedorov 2009-08-12 16:20 Rev.: 10232

ENH: gui+mrml to handle externally defined segmentation

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkMRMLChangeTrackerNode.cxx (changed), vtkMRMLChangeTrackerNode.h (changed)
fedorov 2009-08-11 15:38 Rev.: 10217

BUG: changes in the procedure for determining the voxel size for supersampled
volume were not propagated to the command line module

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed), vtkChangeTrackerLogic.h (changed)
fedorov 2009-08-06 11:37 Rev.: 10178

BUG: removing fmin(), since it may not be compatible with win

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed)
fedorov 2009-08-06 10:46 Rev.: 10177

BUG: files left out of the previous commit by mistake

0 lines of code changed in 3 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed), vtkMRMLChangeTrackerNode.cxx (changed), vtkMRMLChangeTrackerNode.h (changed)
fedorov 2009-08-05 17:36 Rev.: 10175

ENH: functionality to disable ROI registration

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed)
fedorov 2009-08-05 17:12 Rev.: 10174

ENH: functionality to handle externally specified global transform and disabled
global registration

0 lines of code changed in 4 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed), vtkChangeTrackerLogic.h (changed), vtkMRMLChangeTrackerNode.cxx (changed), vtkMRMLChangeTrackerNode.h (changed)
fedorov 2009-08-05 09:03 Rev.: 10171

ENH: GUI/MRML functionality to support registration choices

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkMRMLChangeTrackerNode.cxx (changed), vtkMRMLChangeTrackerNode.h (changed)
fedorov 2009-05-18 17:31 Rev.: 9540

ENH: install logo image data

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: CMakeLists.txt (changed)
fedorov 2009-05-01 16:19 Rev.: 9390

ENH: commiting changes to sync with 3-4 branch fixes

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: CMakeLists.txt (changed)
fedorov 2009-04-27 10:13 Rev.: 9326

BUG: interation parameter setup bogus

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (changed)
pieper 2009-04-07 07:27 Rev.: 9086

COMP: adapt to change in slice controller configuration (scale is now indpenedent of entry)

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed), vtkChangeTrackerGUI.h (changed)
fedorov 2009-03-29 15:04 Rev.: 9004

BUG: add a check to prevent layout reset to FourUp on Slicer startup

0 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerGUI.cxx (changed), vtkChangeTrackerGUI.h (changed)
fedorov 2009-03-15 14:34 Rev.: 8880

ENH: namings for intermediate and analysis results revisited

41 lines of code changed in 2 files:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+39 -26), vtkChangeTrackerLogic.h (+2)
fedorov 2009-03-07 19:36 Rev.: 8848

BUG: module output redirection back to normal

0 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (-2)
fedorov 2009-03-04 17:33 Rev.: 8838

BUG: removed unnecessary dependency on EMSegmenter

1 lines of code changed in 3 files:

  • Modules/ChangeTracker: CMakeLists.txt (-4), vtkChangeTrackerLogic.cxx (+1 -55), vtkChangeTrackerLogic.h (-5)
fedorov 2009-03-02 16:00 Rev.: 8822

ENH: extra check of the image data

4 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+4)
fedorov 2009-03-02 15:52 Rev.: 8821

BUG: disabling output redirect trying to catch bug #440

2 lines of code changed in 1 file:

  • Modules/ChangeTracker: vtkChangeTrackerLogic.cxx (+2)

(38 more)

Generated by StatSVN 0.5.0