

| Directory | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 2746 (100.0%) | 72634 (100.0%) | 26.4 |
| Code/BasicFilters/ | 719 (26.2%) | 26958 (37.1%) | 37.4 |
| Code/Common/ | 889 (32.4%) | 22606 (31.1%) | 25.4 |
| Code/Algorithms/ | 358 (13.0%) | 8787 (12.1%) | 24.5 |
| Testing/Code/BasicFilters/ | 187 (6.8%) | 6541 (9.0%) | 34.9 |
| Testing/Code/Common/ | 106 (3.9%) | 2395 (3.3%) | 22.5 |
| Code/IO/ | 105 (3.8%) | 2073 (2.9%) | 19.7 |
| Examples/Registration/ | 8 (0.3%) | 1043 (1.4%) | 130.3 |
| Testing/Code/Algorithms/ | 85 (3.1%) | 640 (0.9%) | 7.5 |
| Code/Numerics/Statistics/ | 33 (1.2%) | 308 (0.4%) | 9.3 |
| Code/ | 9 (0.3%) | 280 (0.4%) | 31.1 |
| / | 35 (1.3%) | 162 (0.2%) | 4.6 |
| Code/Review/ | 46 (1.7%) | 131 (0.2%) | 2.8 |
| Examples/Filtering/ | 6 (0.2%) | 116 (0.2%) | 19.3 |
| Code/Numerics/ | 11 (0.4%) | 104 (0.1%) | 9.4 |
| Testing/Code/Numerics/ | 5 (0.2%) | 101 (0.1%) | 20.2 |
| Testing/Code/IO/ | 5 (0.2%) | 96 (0.1%) | 19.2 |
| Documentation/ | 14 (0.5%) | 89 (0.1%) | 6.3 |
| Testing/Code/Numerics/FEM/ | 4 (0.1%) | 46 (0.1%) | 11.5 |
| Testing/Code/Review/ | 5 (0.2%) | 39 (0.1%) | 7.8 |
| Code/Numerics/FEM/ | 4 (0.1%) | 23 (0.0%) | 5.7 |
| Examples/DataRepresentation/Image/ | 1 (0.0%) | 20 (0.0%) | 20.0 |
| Testing/Code/SpatialObject/ | 2 (0.1%) | 15 (0.0%) | 7.5 |
| Applications/ | 4 (0.1%) | 15 (0.0%) | 3.7 |
| Code/SpatialObject/ | 5 (0.2%) | 14 (0.0%) | 2.8 |
| Examples/ | 4 (0.1%) | 13 (0.0%) | 3.2 |
| Testing/Data/Baseline/BasicFilters/ | 37 (1.3%) | 7 (0.0%) | 0.1 |
| Testing/Code/Numerics/Statistics/ | 1 (0.0%) | 4 (0.0%) | 4.0 |
| Examples/Iterators/ | 1 (0.0%) | 4 (0.0%) | 4.0 |
| Testing/ | 3 (0.1%) | 2 (0.0%) | 0.6 |
| Wrapping/CSwig/Algorithms/ | 1 (0.0%) | 1 (0.0%) | 1.0 |
| Auxiliary/ | 1 (0.0%) | 1 (0.0%) | 1.0 |
| Testing/HTML/TestingResults/ | 1 (0.0%) | 0 (0.0%) | 0.0 |
| Testing/HTML/ | 1 (0.0%) | 0 (0.0%) | 0.0 |
| Testing/Data/Input/Archetype/ | 9 (0.3%) | 0 (0.0%) | 0.0 |
| Testing/Data/Input/ | 14 (0.5%) | 0 (0.0%) | 0.0 |
| Testing/Data/Baseline/Segmentation/ | 5 (0.2%) | 0 (0.0%) | 0.0 |
| Testing/Data/Baseline/Registration/ | 9 (0.3%) | 0 (0.0%) | 0.0 |
| Testing/Data/Baseline/Filtering/ | 3 (0.1%) | 0 (0.0%) | 0.0 |
| Testing/Data/Baseline/Common/ | 2 (0.1%) | 0 (0.0%) | 0.0 |
| Testing/Data/Baseline/Algorithms/ | 2 (0.1%) | 0 (0.0%) | 0.0 |
| Documentation/Art/ | 6 (0.2%) | 0 (0.0%) | 0.0 |

COMP: warnings
4 lines of code changed in:
BUG: need to pad the end index by the start index so after flipping the image will have the same index structure as the input (start index and size). This was only being done for the FlipAboutOrigin case but it is needed for all cases. Also updated some of the documentation.
12 lines of code changed in:
BUG: FlipImageFilter - Managing directions and the sign of the origin needs to be done differently for FlipAboutOrigin and not. BUG: FlipImageFilter - Use TransformIndexToPhysicalPoint() to account for orientations effect on the new origin BUG: PermuteAxesImageFilter - should not permute the origin. the new image needs to occupy the same space as the old image. Only spacing, direction, and regions should permute. BUG: OrientImageFilter - Flip filter used in the mini-pipeline needed to have FlipAboutOrigin = false. Was done in the GenerateOutputInformation() method but also needed in the GenerateData() method.
43 lines of code changed in:
BUG: fixed core dump on tensor conversion.
17 lines of code changed in:
BUG: docs mention column-major order but describe row-major. Matrices are really row-major.
3 lines of code changed in:
BUG: converters from 9 component tensors to 6 component tensors (just storing the upper/lower triangle).
220 lines of code changed in:
BUG: array indexing on flip factors
3 lines of code changed in:
BUG: fix provided by Marc Niethammer for the case where NrrdImageIO converts data from one coordinate system to LPS on a read. When such data is converted the MetaDataDictionary is update to reflect the coordinate system of the data as it exists in ITK as opposed to how it existed originally on disk.
53 lines of code changed in:
ENH: optimization when intercept is integral and pixel type is integral
33 lines of code changed in:
BUG: does not need an export because it is just a header file
3 lines of code changed in:
ENH: explicit instantiations of region iterators.
111 lines of code changed in:
BUG: Need to include the traits after the explicit instantiations to avoid implicit instantiation duplicate symbols
5 lines of code changed in:
BUG: StartRegistration() bypassed the pipeline mechanism so inputs were not always up to date. BUG: ImageToSpatialObject, MultiResolutionImage, PointSetToImage, and PointSetToPointSet registration methods did not have pipeline routines and did not have an output, so a call to Update() did nothing.
788 lines of code changed in:
COMP: warnings
4 lines of code changed in:
ENH: Probability distribution library allowing for Student-t and Chi-Square pdf, cdf, and inverse cdf calculations.
166 lines of code changed in:
PERF: Changed RescaleFunction to use Duff's device and provided fast paths when slope = 1 or intercept = 0.
101 lines of code changed in:
PERF: Reduced the number of times the file is read to two.
123 lines of code changed in:
BUG: switching to itk_hash_map results in an api change (no operator->()). unrolling change.
2 lines of code changed in:
PERF: switch to using itk_hash_map
19 lines of code changed in:
PERF: Bypass the factory mechanism for MetaDataObject
3 lines of code changed in:
(850 more)