Directory Libs/MRMLIDImageIO/

Directory Created:
2006-06-27 16:22
Total Files:
9
Deleted Files:
0
Lines of Code:
1418

[root]/Libs/MRMLIDImageIO

Lines of Code

Libs/MRMLIDImageIO/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 49 (100.0%) 1741 (100.0%) 35.5
millerjv 27 (55.1%) 1426 (81.9%) 52.8
lorensen 6 (12.2%) 165 (9.5%) 27.5
barre 10 (20.4%) 135 (7.8%) 13.5
pieper 2 (4.1%) 14 (0.8%) 7.0
alexy 1 (2.0%) 1 (0.1%) 1.0
naucoin 1 (2.0%) 0 (0.0%) 0.0
jcfr 1 (2.0%) 0 (0.0%) 0.0
domibel 1 (2.0%) 0 (0.0%) 0.0

Most Recent Commits

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/MRMLIDImageIO: CMakeLists.txt (changed)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (changed)
millerjv 2009-07-28 10:07 Rev.: 10060

BUG: Tensors data array needs to have a name

5 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+5 -1)
millerjv 2009-06-30 08:01 Rev.: 9825

ENH: Pass diffusion weighted, diffusion tensor, and general vector images through memory to shared object command line modules instead of files. \nNOTE: RAS to LPS conversions are performed on the measurement frames which should be correct for DW and DT data. However, general vector images are probably not handled properly here (or elsewhere in Slicer) where an RAS to LPS conversion should modify components of each vector (flip the sign on x and y components.

462 lines of code changed in 2 files:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+440 -15), itkMRMLIDImageIO.h (+22)
millerjv 2009-06-30 07:42 Rev.: 9824

BUG: cleanup libraries

2 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+2 -2)
lorensen 2008-11-22 11:52 Rev.: 7951

COMP: various warnings.

0 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (changed)
millerjv 2008-07-30 08:23 Rev.: 7362

BUG: documentation string on factory overrride

0 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIOFactory.cxx (changed)
barre 2008-05-27 23:38 Rev.: 6891

ENH: the ITKFactories plugin are .dylib, copied to .so, but the .so were never installed. Fixed.

4 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+4)
barre 2008-05-27 18:27 Rev.: 6890

ENH: fix ITKFactories issues again

7 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+7 -3)
barre 2008-05-27 12:32 Rev.: 6877

ENH: fix POST_BUILD issue by using SET_TARGET_PROPERTIES

11 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+11 -19)
barre 2008-05-22 11:42 Rev.: 6821

ENH: VERBATIM is still not the default in ADD_CUSTOM_COMMAND but this is really the way to go if you want to be able to deal with spaces *and* parenthesis in your path on unix

4 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+4 -1)
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.

45 lines of code changed in 2 files:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+45 -15), itkMRMLIDImageIOConfigure.h.in (-7)
barre 2008-05-20 02:29 Rev.: 6773

ENH: Slicer3 Spring Installation Clean Up

62 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+62 -33)
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/MRMLIDImageIO: 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.

3 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+3 -3)
pieper 2008-01-14 16:05 Rev.: 5495

COMP: put all INSTALL commands into a single CMake directive

1 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+1 -2)
millerjv 2008-01-14 13:18 Rev.: 5492

BUG: To address performance issues in launching executable command line modules from within Slicer on the Mac, we now use an ITKFactories directory to store the shared objects for new ITK IO formats. This saves opening all the shared objects in the bin directory when running a plugin. While this addresses a Mac issue, all platforms should benefit.

31 lines of code changed in 2 files:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+28 -6), itkMRMLIDIOPlugin.cxx (+3 -2)
millerjv 2007-10-09 11:02 Rev.: 4569

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

4 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+4 -3)
pieper 2007-09-27 16:29 Rev.: 4454

ENH: work around issue with names of shared libraries on mac for use as ITK IO Plugins

13 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+13)
millerjv 2007-09-26 12:42 Rev.: 4432

BUG: Attempt to inhibit modified events while writing to the MRML scene.

123 lines of code changed in 2 files:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+119 -94), itkMRMLIDImageIO.h (+4)
millerjv 2007-09-26 11:27 Rev.: 4431

BUG: Issues with 2D images on return from plugin (MRMLIDImageIO::Write)

5 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+5 -5)
naucoin 2007-07-17 16:52 Rev.: 3866

BUG: check for null image data and dimensions, return

0 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (changed)
millerjv 2007-07-06 11:54 Rev.: 3799

ENH: Switched the MRMLIDImageIO to use IDs in the filenames instead of encoded pointers to the node. (Ascii encoded pointers are still used to reference the scene.) Also switched to using # to separate the scene and node to make it consistent with how nodes in MRML files are referenced to the CLI.

0 lines of code changed in 2 files:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (changed), itkMRMLIDImageIO.h (changed)
lorensen 2007-01-10 12:20 Rev.: 2176

BUG: Transformations were inconsistent. Now orientation, spacing, origin are handled consistently between files and plugins.

61 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+61 -47)
lorensen 2007-01-08 16:50 Rev.: 2144

BUG: itk direction cosine row/column flip.

8 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+8 -4)
barre 2006-12-11 16:21 Rev.: 1776

ENH: fix Win32 header

1 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDIOWin32Header.h (+1 -1)
barre 2006-12-11 12:50 Rev.: 1771

ENH: I doubt anybody has done static build so far because SLICER3_LIB_INSTALL_DIR would not be set (?), and INSTALL_TARGETS would fail in a few Libs component. Comment the install command until the installation stuff is fixed.

1 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: CMakeLists.txt (+1 -1)
lorensen 2006-07-20 12:38 Rev.: 910

BUG: shared library linkages were not being handled correctly on Windows. Added a ModuleDescriptionParserConfigure.h.in file to correctly handle dll linkages.

1 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIOConfigure.h.in (+1 -1)
alexy 2006-07-15 13:53 Rev.: 888

ENH: added reference nodes change propogation for Volumes, Midels, Transforms

1 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+1 -1)
millerjv 2006-07-05 16:04 Rev.: 846

COMP: warnings

2 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+2 -2)
lorensen 2006-07-04 07:29 Rev.: 835

ENH: Now properly computes spacing, origin and direction for both reading and writing. This information needed to be converted between slicer's RAS to itk's LPS.

92 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+92 -42)
millerjv 2006-06-30 07:06 Rev.: 813

ENH: avoid a new allocation of a vtkImageData if the same bulk data area can be used.

10 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+10 -4)
millerjv 2006-06-29 15:01 Rev.: 805

BUG: use std::string::npos to determine whether a substring is found.

3 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+3 -3)
millerjv 2006-06-28 16:31 Rev.: 782

BUG: Centering and directions

5 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+5 -5)
lorensen 2006-06-27 20:27 Rev.: 763

BUG: GetDataSize does not exist for vtkDataArray in VTK5. Replaced with equivalent calls that are in VTK5.

3 lines of code changed in 1 file:

  • Libs/MRMLIDImageIO: itkMRMLIDImageIO.cxx (+3 -1)
millerjv 2006-06-27 16:22 Rev.: 759

ENH: ImageIO object that takes allows you to use an ImageFileReader/ImageFileWriter to connect to a MRML scene.

771 lines of code changed in 9 files:

  • Libs/MRMLIDImageIO: CMakeLists.txt (new 49), itkMRMLIDIOPlugin.cxx (new 14), itkMRMLIDIOPlugin.h (new 25), itkMRMLIDIOWin32Header.h (new 34), itkMRMLIDImageIO.cxx (new 391), itkMRMLIDImageIO.h (new 115), itkMRMLIDImageIOConfigure.h.in (new 20), itkMRMLIDImageIOFactory.cxx (new 51), itkMRMLIDImageIOFactory.h (new 72)
Generated by StatSVN 0.5.0