Click or drag to resize
DigitalRuneRadialBasisRegressionF Class
Scattered Interpolation using multiple regression analysis with radial basis functions (single-precision).
Inheritance Hierarchy
SystemObject
  System.Collections.ObjectModelCollectionPairVectorF, VectorF
    DigitalRune.Mathematics.InterpolationScatteredInterpolationF
      DigitalRune.Mathematics.InterpolationRadialBasisRegressionF

Namespace: DigitalRune.Mathematics.Interpolation
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public class RadialBasisRegressionF : ScatteredInterpolationF

The RadialBasisRegressionF type exposes the following members.

Constructors
  NameDescription
Public methodRadialBasisRegressionF
Initializes a new instance of the RadialBasisRegressionF class
Top
Methods
  NameDescription
Public methodAdd (Inherited from CollectionPairVectorF, VectorF.)
Public methodClear (Inherited from CollectionPairVectorF, VectorF.)
Protected methodClearItems (Inherited from ScatteredInterpolationF.)
Public methodCompute
Computes a y value for the specified x value using scattered interpolation.
(Inherited from ScatteredInterpolationF.)
Public methodContains (Inherited from CollectionPairVectorF, VectorF.)
Public methodCopyTo (Inherited from CollectionPairVectorF, VectorF.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator (Inherited from CollectionPairVectorF, VectorF.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf (Inherited from CollectionPairVectorF, VectorF.)
Public methodInsert (Inherited from CollectionPairVectorF, VectorF.)
Protected methodInsertItem (Inherited from ScatteredInterpolationF.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnCompute
Called when Compute(VectorF) is called.
(Overrides ScatteredInterpolationFOnCompute(VectorF).)
Protected methodOnSetup (Overrides ScatteredInterpolationFOnSetup.)
Public methodRemove (Inherited from CollectionPairVectorF, VectorF.)
Public methodRemoveAt (Inherited from CollectionPairVectorF, VectorF.)
Protected methodRemoveItem (Inherited from ScatteredInterpolationF.)
Protected methodSetItem
Replaces the element at the specified index.
(Inherited from ScatteredInterpolationF.)
Public methodSetup
Prepares the scattered interpolation.
(Inherited from ScatteredInterpolationF.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyBasisFunction
Gets or sets the basis function.
Public propertyCount (Inherited from CollectionPairVectorF, VectorF.)
Public propertyDistanceFunction
Gets or sets the distance function.
Public propertyItem
Gets or sets the element at the specified index.
(Inherited from CollectionPairVectorF, VectorF.)
Protected propertyItems (Inherited from CollectionPairVectorF, VectorF.)
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate methodIListAdd
Adds an item to the IList.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate methodIListContains
Determines whether the IList contains a specific value.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate methodICollectionCopyTo
Copies the elements of the ICollection to an Array, starting at a particular Array index.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate methodIEnumerableGetEnumerator
Returns an enumerator that iterates through a collection.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate methodIListIndexOf
Determines the index of a specific item in the IList.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate methodIListInsert
Inserts an item into the IList at the specified index.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate propertyIListIsFixedSize
Gets a value indicating whether the IList has a fixed size.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate propertyICollectionTIsReadOnly (Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate propertyIListIsReadOnly
Gets a value indicating whether the IList is read-only.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate propertyICollectionIsSynchronized
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate propertyIListItem
Gets or sets the element at the specified index.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate methodIListRemove
Removes the first occurrence of a specific object from the IList.
(Inherited from CollectionPairVectorF, VectorF.)
Explicit interface implementationPrivate propertyICollectionSyncRoot
Gets an object that can be used to synchronize access to the ICollection.
(Inherited from CollectionPairVectorF, VectorF.)
Top
Remarks

Radial basis functions are described in the paper "Pose Space Deformation: A Unified Approach to Shape Interpolation and Skeleton-Driven Deformation".

The regression can numerically fail for bad reference data pairs or an inappropriate basis function. In this case Setup will throw a MathematicsException.

See Also