Directory Code/SpatialObject/

Directory Created:
2002-04-11 10:11
Total Files:
105
Deleted Files:
23
Lines of Code:
18143

Browse with ViewCVS

[root]/Code/SpatialObject

Lines of Code

Code/SpatialObject/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 1538 (100.0%) 36025 (100.0%) 23.4
jjomier 806 (52.4%) 23152 (64.3%) 28.7
aylward 141 (9.2%) 3132 (8.7%) 22.2
lorensen 221 (14.4%) 2675 (7.4%) 12.1
piloo 67 (4.4%) 2550 (7.1%) 38.0
kentwilliams 17 (1.1%) 1468 (4.1%) 86.3
ibanez 114 (7.4%) 1036 (2.9%) 9.0
foskey 20 (1.3%) 641 (1.8%) 32.0
karthik 10 (0.7%) 477 (1.3%) 47.7
styner 16 (1.0%) 317 (0.9%) 19.8
will 55 (3.6%) 165 (0.5%) 3.0
king 18 (1.2%) 121 (0.3%) 6.7
glehmann 17 (1.1%) 82 (0.2%) 4.8
mcoursolle 9 (0.6%) 44 (0.1%) 4.8
mariusstaring 1 (0.1%) 37 (0.1%) 37.0
hjohnson 7 (0.5%) 28 (0.1%) 4.0
rupert 1 (0.1%) 27 (0.1%) 27.0
millerjv 5 (0.3%) 14 (0.0%) 2.8
barre 1 (0.1%) 11 (0.0%) 11.0
zpincus 2 (0.1%) 10 (0.0%) 5.0
malaterre 2 (0.1%) 9 (0.0%) 4.5
lng 3 (0.2%) 9 (0.0%) 3.0
andy 1 (0.1%) 9 (0.0%) 9.0
tom.vercauteren 2 (0.1%) 5 (0.0%) 2.5
jisung 1 (0.1%) 3 (0.0%) 3.0
davisb 1 (0.1%) 3 (0.0%) 3.0

Most Recent Commits

tom.vercauteren 2009-11-03 07:20

COMP: Fixed shadowed typedef warning

5 lines of code changed in:

karthik 2009-10-23 03:57

ENH: Planes should be computed only if the image dimension is greater than or equal to 3

7 lines of code changed in:

ibanez 2009-10-22 12:49

BUG: 9757: Feature Request: Flatten the header directory structure when installing ITK. A CMake option called ITK_USE_FLAT_DIRECTORY has been added. When ON, all the Headers from Insight/Code subdirectories will be copied to a single destination directory. We are still working on flattening the Insight/Utilities tree...

7 lines of code changed in:

ibanez 2009-10-22 09:21

COMP: Replacing use of ternary operator (a>b)?a:b that was using inconsistent types and failing to compile in Borland, with a vanilla if() statement with the proper static_casts between Index components and Size components.

20 lines of code changed in:

ibanez 2009-04-08 13:27

COMP: Fixing remaining instances of lack of const-correctness.

31 lines of code changed in:

ibanez 2009-04-08 13:06

BUG: Error in management of last polygon segment in the IsInside() method. Fixing several instances of lack of const-correctness.

52 lines of code changed in:

lorensen 2009-04-07 09:33

BUG: ITK_EXPORT was missing from class definition. Hence, PrintSelfCheck was not being run. After adding ITK_EXPORT, fixed defects.

217 lines of code changed in:

ibanez 2009-04-05 19:19

COMP: Replacing "sqrt","exp" and "pow" with their "vcl_" counterparts in order to support Sun-CC with -stlport4.

3 lines of code changed in:

ibanez 2009-04-05 05:56

COMP: Adding the -stlport4 compiler flag for the Sun CC compiler. http://www.itk.org/mailman/private/insight-developers/2009-April/012118.html Subsequent modifications of #include headers in order to find functions such as: atoi, atof, memcpy. As well as renaming of basic mathematical functions as vcl_X, for: sin, cos, atan, asin, fabs.

9 lines of code changed in:

ibanez 2009-04-02 10:39

STYLE: Improve doxygen documentation according to the addition of the Sigma parameter.

9 lines of code changed in:

ibanez 2009-04-02 09:51

COMP: New member variable m_Sigma was missing from PrintSelf().

3 lines of code changed in:

ibanez 2009-04-01 17:17

BUG: The Gaussian was reusing the Radius parameter both for the value of the sigma and for the value of the support of the spatial object. Now an explicit Sigma parameter has been added.

12 lines of code changed in:

ibanez 2009-04-01 13:50

BUG: Radius was not being taken into account consistently. The Z Scores were not using the radius parameter, in the same way that the IsInside method was.

13 lines of code changed in:

lorensen 2009-03-31 12:07

COMP: closestPoint may be used uninitialized.

3 lines of code changed in:

lorensen 2009-01-28 15:10

STYLE: according to kwstyle.

303 lines of code changed in:

glehmann 2009-01-16 06:37

STYLE: Fix various doxygen problems. Missing documentation is tagged with a TODO.

20 lines of code changed in:

glehmann 2008-12-19 13:21

COMP: Bug #8110. Force gccxml to not look inside itkSpatialObject.txx, and thus not see that GetChildren() is not declared in SpatialObjectTreeNode.

5 lines of code changed in:

ibanez 2008-11-02 11:03

BUG: Fixing the IsInside() method. Removing redundant call to ComputeLocalBoundingBox(). The method ComputeBoundingBox() in the SpatialObject, already call ComputeLocalBoundingBox(), and SetImage() calls ComputeBoundingBox().

29 lines of code changed in:

ibanez 2008-11-01 10:14

BUG: 7914. Computation of BoundingBox doesn't take image Direction into account. Temporarily disabling the use of the BoundingBox in the IsInside() method.

13 lines of code changed in:

ibanez 2008-11-01 10:08

BUG: 6340. Now that the ImageBase, Image, OrientedImage have refactored their management of Direction, it becomes possible to use the method TransformIndexToPhysicalPoint() for the purpose of experimentally finding the transformation matrix used to convert from index space to physical space. The use of the dynamic_cast has been removed. It was no longer functional since now the itk::OrientedImage derives from the itk::Image. http://public.kitware.com/Bug/view.php?id=6340

62 lines of code changed in:

(483 more)

Generated by StatCVS 0.3