Directory Libs/IGT/

Directory Created:
2007-01-06 19:39
Total Files:
15
Deleted Files:
44
Lines of Code:
1606

[root]/Libs/IGT
            directory in repo Testing (1 files, 0 lines)

Lines of Code

Libs/IGT/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 193 (100.0%) 3073 (100.0%) 15.9
hliu 135 (69.9%) 1762 (57.3%) 13.0
tokuda 27 (14.0%) 1188 (38.7%) 44.0
barre 8 (4.1%) 91 (3.0%) 11.3
nobyhata 12 (6.2%) 21 (0.7%) 1.7
millerjv 2 (1.0%) 6 (0.2%) 3.0
rsierra 1 (0.5%) 2 (0.1%) 2.0
alexy 1 (0.5%) 2 (0.1%) 2.0
pieper 3 (1.6%) 1 (0.0%) 0.3
jcfr 2 (1.0%) 0 (0.0%) 0.0
hjohnson 1 (0.5%) 0 (0.0%) 0.0
domibel 1 (0.5%) 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/IGT: 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/IGT: CMakeLists.txt (changed)
hjohnson 2009-09-08 15:52 Rev.: 10426

COMP: With the conversion to CMake version 2.6, the variables CMAKE_RUNTIME_OUTPUT_DIRECTORY CMAKE_LIBRARY_OUTPUT_DIRECTORY CMAKE_ARCHIVE_OUTPUT_DIRECTORY should be used instead of EXECUTABLE_OUTPUT_PATH and LIBRARY_OUTPUT_PATH.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTIGSTKStream.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/IGT: CMakeLists.txt (changed)
pieper 2009-04-14 10:54 Rev.: 9190

BUG: free scene reference

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (changed)
barre 2008-06-25 10:58 Rev.: 7176

COMP: minor. One of the reason Slicer3 is so slow to compile is that so many classes include STL headers in their own header, instead of their implementation file (PIMPL). Some of those headers are actually not needed anymore by said classes, or were put there "just in case I need a map, vector, list, etc.". The more it happens, the slower the build process gets, and the slower the dependencies are computed/resolved. Try to fix some.

0 lines of code changed in 3 files:

  • Libs/IGT: vtkIGTDataStream.h (-3), vtkIGTIGSTKStream.h (-3), vtkIGTMatrixState.h (-3)
barre 2008-05-21 18:25 Rev.: 6803

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.

36 lines of code changed in 2 files:

  • Libs/IGT: CMakeLists.txt (+33 -12), vtkIGTConfigure.h.in (+3 -10)
barre 2008-05-20 02:29 Rev.: 6773

ENH: Slicer3 Spring Installation Clean Up

55 lines of code changed in 2 files:

  • Libs/IGT: CMakeLists.txt (+52 -37), vtkIGTConfigure.h.in (+3 -3)
barre 2008-04-25 17:27 Rev.: 6552

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:

  • Libs/IGT: CMakeLists.txt (changed)
millerjv 2008-01-31 12:24 Rev.: 5665

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:

  • Libs/IGT: CMakeLists.txt (+2 -2)
tokuda 2008-01-02 16:33 Rev.: 5374

COMP: Removed ProstateNav module supporting classes (for release).

25 lines of code changed in 12 files:

  • Libs/IGT: CMakeLists.txt (+20 -20), vtkIGTMessageAttributeBase.cxx (del), vtkIGTMessageAttributeBase.h (del), vtkIGTMessageAttributeSet.cxx (del), vtkIGTMessageAttributeSet.h (del), vtkIGTMessageAttributeSet.txx (del), vtkIGTMessageGenericAttribute.h (del), vtkIGTMessageGenericAttribute.txx (del), vtkIGTMessageImageDataAttribute.cxx (del), vtkIGTMessageImageDataAttribute.h (del), vtkIGTOpenTrackerStream.cxx (+4 -209), vtkIGTOpenTrackerStream.h (+1 -22)
tokuda 2007-12-31 19:27 Rev.: 5364

ENH: Added ProstateNav Module. The module is not active in default.

2 lines of code changed in 3 files:

  • Libs/IGT: CMakeLists.txt (-1), vtkIGTOpenTrackerStream.cxx (+1 -2), vtkIGTOpenTrackerStream.h (+1)
tokuda 2007-12-30 17:38 Rev.: 5358

ENH: Extended OpenTrackerStream to receive string/image data from NaviTrack stream.

1161 lines of code changed in 12 files:

  • Libs/IGT: CMakeLists.txt (+21 -20), vtkIGTMessageAttributeBase.cxx (new 50), vtkIGTMessageAttributeBase.h (new 114), vtkIGTMessageAttributeSet.cxx (new 60), vtkIGTMessageAttributeSet.h (new 129), vtkIGTMessageAttributeSet.txx (new 124), vtkIGTMessageGenericAttribute.h (new 73), vtkIGTMessageGenericAttribute.txx (new 160), vtkIGTMessageImageDataAttribute.cxx (new 136), vtkIGTMessageImageDataAttribute.h (new 64), vtkIGTOpenTrackerStream.cxx (+208 -2), vtkIGTOpenTrackerStream.h (+22 -2)
nobyhata 2007-10-16 23:17 Rev.: 4654

ENH: Taking Navigrack related code from IGT lib as part of effort to switching to IGSTK

20 lines of code changed in 1 file:

  • Libs/IGT: CMakeLists.txt (+20 -15)
hliu 2007-10-15 09:06 Rev.: 4641

BUG: cleaned IGT library.

0 lines of code changed in 29 files:

  • Libs/IGT: IGTAuroraTracker.cxx (del), IGTAuroraTracker.h (del), IGTConfig.cmake.in (del), IGTConfigure.h.in (del), IGTDeviceAttributes.cxx (del), IGTDeviceAttributes.h (del), IGTFlockofBirdTracker.cxx (del), IGTFlockofBirdTracker.h (del), IGTImageState.cxx (del), IGTImageState.h (del), IGTImageStream.cxx (del), IGTImageStream.h (del), IGTImagerAttributes.cxx (del), IGTImagerAttributes.h (del), IGTMRTTRacker.cxx (del), IGTMRTTRacker.h (del), IGTProstateRobot.cxx (del), IGTProstateRobot.h (del), IGTRealtimeMRI.cxx (del), IGTRealtimeMRI.h (del), IGTRegistration.xmi (del), IGTRobotFrameAttributes.cxx (del), IGTRobotFrameAttributes.h (del), IGTRobotFrameStream.cxx (del), IGTRobotFrameStream.h (del), IGTTrackerFamily.xmi (del), IGTTrackerStream.cxx (del), IGTTrackerStream.h (del), IGTWin32Header.h (del)
millerjv 2007-10-09 11:02 Rev.: 4569

ENH: Update INSTALL_* commands to INSTALL() commands.

4 lines of code changed in 1 file:

  • Libs/IGT: CMakeLists.txt (+4 -1)
hliu 2007-08-29 09:57 Rev.: 4188

BUG: added attribute StreamID so that the methods RegisterStream* will not return a local variable.

9 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTDataManager.cxx (+4 -4), vtkIGTDataManager.h (+5)
alexy 2007-08-27 19:53 Rev.: 4136

ENH: tensor math updates and other misc changes

2 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (+2)
pieper 2007-05-18 17:19 Rev.: 3416

ENH: hide default transform from the scene editors

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (changed)
hliu 2007-05-02 09:25 Rev.: 3316

BUG: fixed bugs for IGSTK support.

0 lines of code changed in 3 files:

  • Libs/IGT: vtkIGTConfigure.h.in (changed), vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed)
hliu 2007-05-01 13:38 Rev.: 3312

ENH: moved shared components in vtkIGTOpenTrackerStream and vtkIGTIGSTKStream into vtkIGTDataStream.

0 lines of code changed in 6 files:

  • Libs/IGT: vtkIGTDataStream.cxx (changed), vtkIGTDataStream.h (changed), vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed), vtkIGTOpenTrackerStream.cxx (changed), vtkIGTOpenTrackerStream.h (changed)
hliu 2007-05-01 09:38 Rev.: 3304

ENH: always used OpenTracker version 2.0.

0 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTOpenTrackerStream.cxx (changed), vtkIGTOpenTrackerStream.h (changed)
hliu 2007-05-01 09:37 Rev.: 3303

ENH: replaced OpenTracker with NaviTrack.

0 lines of code changed in 2 files:

  • Libs/IGT: CMakeLists.txt (changed), vtkIGTConfigure.h.in (changed)
hliu 2007-04-11 11:20 Rev.: 3210

BUG: defined the file name as const char *.

2 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTOpenTrackerStream.cxx (+1 -1), vtkIGTOpenTrackerStream.h (+1 -1)
hliu 2007-04-09 14:16 Rev.: 3198

ENH: used vnl for vector operations.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed)
hliu 2007-04-09 11:08 Rev.: 3194

ENH: more work on IGSTK.

0 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed)
hliu 2007-04-07 15:40 Rev.: 3183

ENH: more devel on IGSTK.

0 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed)
hliu 2007-04-06 08:19 Rev.: 3165

ENH: more work on IGSTK.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed)
hliu 2007-04-06 08:13 Rev.: 3164

ENH: more work on IGSTK.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTIGSTKStream.h (changed)
hliu 2007-03-30 14:43 Rev.: 3094

ENH: added work on igstk.

0 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed)
hliu 2007-03-30 11:17 Rev.: 3086

ENH: more devel work on IGSTK.

0 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed)
hliu 2007-03-26 14:24 Rev.: 3022

ENH: more work on IGSTK lib.

0 lines of code changed in 1 file:

  • Libs/IGT: CMakeLists.txt (changed)
hliu 2007-03-26 14:13

ENH: more work on IGSTK lib.

0 lines of code changed in 2 files:

  • Libs/IGT: vtkIGTIGSTKStream.cxx (changed), vtkIGTIGSTKStream.h (changed)
hliu 2007-03-26 14:02 Rev.: 3018

ENH: changed the sphere radius to 3.0 mm.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (changed)
hliu 2007-03-26 10:06 Rev.: 3015

ENH: added switch for opentracker lib version.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTOpenTrackerStream.cxx (changed)
hliu 2007-03-23 14:32 Rev.: 3012

ENH: added a sphere for the locator tip.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (changed)
hliu 2007-03-23 14:06 Rev.: 3010

ENH: used a tranform node to move the locator.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (changed)
hliu 2007-03-22 12:42 Rev.: 3007

ENH: added a note for using NaviTrack.

0 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTOpenTrackerStream.cxx (changed)
pieper 2007-03-17 16:57 Rev.: 2948

ENH: this internal model shouldn't show up in the display by default

1 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTDataManager.cxx (+1)
rsierra 2007-03-15 10:36 Rev.: 2938

COMP: Moved from OpenTracker to NaviTrack library

2 lines of code changed in 1 file:

  • Libs/IGT: vtkIGTOpenTrackerStream.cxx (+2 -2)

(5 more)

Generated by StatSVN 0.5.0