Directory Code/Numerics/Statistics/

Directory Created:
2001-04-10 17:22
Total Files:
134
Deleted Files:
87
Lines of Code:
26616

Browse with ViewCVS

[root]/Code/Numerics/Statistics

Lines of Code

Code/Numerics/Statistics/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 1948 (100.0%) 49897 (100.0%) 25.6
jisung 692 (35.5%) 23717 (47.5%) 34.2
ibanez 321 (16.5%) 8124 (16.3%) 25.3
lorensen 267 (13.7%) 7139 (14.3%) 26.7
karthik 229 (11.8%) 6637 (13.3%) 28.9
will 153 (7.9%) 870 (1.7%) 5.6
parks 40 (2.1%) 620 (1.2%) 15.5
spathak 6 (0.3%) 520 (1.0%) 86.6
zpincus 15 (0.8%) 346 (0.7%) 23.0
millerjv 33 (1.7%) 308 (0.6%) 9.3
hjohnson 32 (1.6%) 305 (0.6%) 9.5
jjomier 27 (1.4%) 294 (0.6%) 10.8
mariusstaring 5 (0.3%) 262 (0.5%) 52.4
glehmann 25 (1.3%) 170 (0.3%) 6.8
king 35 (1.8%) 142 (0.3%) 4.0
aylward 11 (0.6%) 139 (0.3%) 12.6
sofka 26 (1.3%) 101 (0.2%) 3.8
davisb 2 (0.1%) 48 (0.1%) 24.0
blezek 9 (0.5%) 43 (0.1%) 4.7
mcoursolle 3 (0.2%) 26 (0.1%) 8.6
malaterre 1 (0.1%) 16 (0.0%) 16.0
hoffman 3 (0.2%) 14 (0.0%) 4.6
kentwilliams 4 (0.2%) 12 (0.0%) 3.0
barre 1 (0.1%) 11 (0.0%) 11.0
andy 1 (0.1%) 9 (0.0%) 9.0
andinet 2 (0.1%) 7 (0.0%) 3.5
blowekamp 1 (0.1%) 5 (0.0%) 5.0
tom.vercauteren 1 (0.1%) 4 (0.0%) 4.0
Michel 1 (0.1%) 4 (0.0%) 4.0
padfield 1 (0.1%) 3 (0.0%) 3.0
david.cole 1 (0.1%) 1 (0.0%) 1.0

Most Recent Commits

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...

8 lines of code changed in:

lorensen 2009-09-19 15:39

BUG: 9551 ExpectationMaximizationMixtureModelEstimator::GetInitialProportions() fails to compile. Changed return to a pointer.

3 lines of code changed in:

hjohnson 2009-08-10 21:31

STYLE: Fixed spelling errors.

5 lines of code changed in:

ibanez 2009-08-08 16:19

COMP: Going back to using an Exception since we don't see a way of catching an expected failure of an assert.

8 lines of code changed in:

ibanez 2009-08-08 15:23

BUG: The saturation check should be made against the number 16777216 not against NumericTraits::max(). The number 16777216 is the largest integer that can be represented exactly in a float type.

14 lines of code changed in:

ibanez 2009-08-08 14:38

COMP: Copy pasting is Evil !, Evil I tell you...

3 lines of code changed in:

ibanez 2009-08-08 14:35

BUG: 9383. The frequency container is using Float as type for counting instances of an Id. This can saturate, specially when using large images. The IncrementFrequency() method now verifies if the container is going to saturate, and throws and Exception if it does. This is checked both for the frequency of the particular instance, and for the total frequency.

24 lines of code changed in:

ibanez 2009-08-08 14:32

BUG: 9383. Adding a verification for possible saturation of the Frequency counter type. If the type is about to be saturated, it will throw an exception, both for the frequency container of the current Id, and for the container of total frequency.

21 lines of code changed in:

blowekamp 2009-08-07 11:27

STYLE: Changed raw numbers to use vnl's numeric constants

5 lines of code changed in:

glehmann 2009-05-20 12:21

COMP: Missing private copy constructor and operator= is breaking wrapitk build.

13 lines of code changed in:

ibanez 2009-04-25 19:37

BUG: Fix for the incorrect correction that was introduced in the Statistics version in ITK. See details in: http://public.kitware.com/Bug/view.php?id=7007

10 lines of code changed in:

ibanez 2009-04-16 10:27

BUG: Mean and Covariance were not initialized in the constructor.

4 lines of code changed in:

Michel 2009-04-15 16:05

BUG: 8816 Corrected covariance & inverse covariance update for Gaussian mixture model.

4 lines of code changed in:

karthik 2009-04-12 07:15

ENH: Moving the netlib/slatec files into a seperate library in Utilities/netlib/slatec. This serves two purposes. It cleans up the code. It excludes those files from coverage, being a third party library. Given that there are no header files, the number of include directories is unaffected.

2 lines of code changed in:

ibanez 2009-04-06 06:51

COMP: Replacing "log" functions with "vcl_log" in order to support Sun-CC with -stlport4.

6 lines of code changed in:

ibanez 2009-04-06 06:15

COMP: Replacing "exp" with "vcl_exp" in order to support Sun-CC compiler with -stlport4. Also replacing name of exception variables "exp" with "excp" to avoid human confusion.

100 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.

4 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.

67 lines of code changed in:

kentwilliams 2009-04-01 09:36

COMP: made operator() const for functors where ever possible

12 lines of code changed in:

lorensen 2009-03-04 15:26

COMP: id has special meaning for objective-c. Changed id to ident;

27 lines of code changed in:

(702 more)

Generated by StatCVS 0.3