ITK  5.4.0
Insight Toolkit
Public Types | Static Public Member Functions | List of all members
itk::BarycentricCombination< TPointContainer, TWeightContainer > Class Template Reference

#include <itkPoint.h>

Detailed Description

template<typename TPointContainer, typename TWeightContainer>
class itk::BarycentricCombination< TPointContainer, TWeightContainer >

Computes the barycentric combination of an array of N points.

This class computes the barycentric combination of an array of N points.

An array of (N-1) values is expected to weight the contribution of the first (N-1) points, the weight of the Nth point is computed to ensure that the N weights sum 1.

This method computes:

\[ \overrightarrow{P}= \sum_{i=1}^{N-1} w_i * \overrightarrow{P}_i + \left(1- \sum_{i=1}^{N-1} w_i\right) * \overrightarrow{P}_N \]

The points are expected to be stored in an itkContainer class like itk::VectorContainer, responding to the Begin(), End(), Value() API.

The weights are expected to be stored in any array-like container having a operator[i].

Definition at line 341 of file itkPoint.h.

Public Types

using PointContainerPointer = typename PointContainerType::Pointer
 
using PointContainerType = TPointContainer
 
using PointType = typename PointContainerType::Element
 
using WeightContainerType = TWeightContainer
 

Static Public Member Functions

static PointType Evaluate (const PointContainerPointer &points, const WeightContainerType &weights)
 

Member Typedef Documentation

◆ PointContainerPointer

template<typename TPointContainer , typename TWeightContainer >
using itk::BarycentricCombination< TPointContainer, TWeightContainer >::PointContainerPointer = typename PointContainerType::Pointer

Definition at line 347 of file itkPoint.h.

◆ PointContainerType

template<typename TPointContainer , typename TWeightContainer >
using itk::BarycentricCombination< TPointContainer, TWeightContainer >::PointContainerType = TPointContainer

Convenient type alias.

Definition at line 346 of file itkPoint.h.

◆ PointType

template<typename TPointContainer , typename TWeightContainer >
using itk::BarycentricCombination< TPointContainer, TWeightContainer >::PointType = typename PointContainerType::Element

Definition at line 348 of file itkPoint.h.

◆ WeightContainerType

template<typename TPointContainer , typename TWeightContainer >
using itk::BarycentricCombination< TPointContainer, TWeightContainer >::WeightContainerType = TWeightContainer

Definition at line 349 of file itkPoint.h.

Member Function Documentation

◆ Evaluate()

template<typename TPointContainer , typename TWeightContainer >
static PointType itk::BarycentricCombination< TPointContainer, TWeightContainer >::Evaluate ( const PointContainerPointer points,
const WeightContainerType weights 
)
static

The documentation for this class was generated from the following file: