|
|
| ContinuousIndex ()=default |
|
| ContinuousIndex (const ContinuousIndex &)=default |
|
| ContinuousIndex (ContinuousIndex &&)=default |
|
ContinuousIndex & | operator= (const ContinuousIndex &)=default |
|
ContinuousIndex & | operator= (ContinuousIndex &&)=default |
|
| ~ContinuousIndex ()=default |
|
| ContinuousIndex (const ValueType r[IndexDimension]) |
|
| ContinuousIndex (const IndexType &index) |
|
Point & | operator= (const Point &)=default |
|
Point & | operator= (Point &&)=default |
|
| Point ()=default |
|
| Point (const Point &)=default |
|
| Point (const Point< TPointValueType, NPointDimension > &r) |
|
| Point (const TPointValueType r[NPointDimension]) |
|
| Point (const ValueType r[NPointDimension]) |
|
| Point (Point &&)=default |
|
| ~Point ()=default |
|
| Point (const TPointValueType &v) |
|
| Point (const ValueType &v) |
|
| Point (const std::array< ValueType, NPointDimension > &stdArray) |
|
Point & | operator= (const ValueType r[NPointDimension]) |
|
bool | operator== (const Self &pt) const |
|
bool | operator!= (const Self &pt) const |
|
const Self & | operator+= (const VectorType &vec) |
|
const Self & | operator-= (const VectorType &vec) |
|
VectorType | operator- (const Self &pnt) const |
|
Self | operator- (const VectorType &vec) const |
|
Self | operator+ (const VectorType &vec) const |
|
VectorType | GetVectorFromOrigin () const |
|
vnl_vector_ref< TCoordRep > | GetVnlVector () |
|
vnl_vector< TCoordRep > | GetVnlVector () const |
|
void | SetToMidPoint (const Self &, const Self &) |
|
void | SetToBarycentricCombination (const Self &A, const Self &B, double alpha) |
|
void | SetToBarycentricCombination (const Self &A, const Self &B, const Self &C, double weightForA, double weightForB) |
|
void | SetToBarycentricCombination (const Self *P, const double *weights, unsigned int N) |
|
void | CastFrom (const Point< TCoordRepB, NPointDimension > &pa) |
|
RealType | SquaredEuclideanDistanceTo (const Point< TCoordRepB, NPointDimension > &pa) const |
|
RealType | EuclideanDistanceTo (const Point< TCoordRepB, NPointDimension > &pa) const |
|
| FixedArray ()=default |
|
| FixedArray (const FixedArray &)=default |
|
| FixedArray (FixedArray &&)=default |
|
| FixedArray (const ValueType r[VLength]) |
|
| FixedArray (const ValueType &) |
|
| FixedArray (const std::array< ValueType, VLength > &stdArray) |
|
| FixedArray (const FixedArray< TFixedArrayValueType, VLength > &r) |
|
| FixedArray (const TScalarValue *r) |
|
FixedArray & | operator= (const FixedArray &)=default |
|
FixedArray & | operator= (FixedArray &&)=default |
|
FixedArray & | operator= (const FixedArray< TFixedArrayValueType, VLength > &r) |
|
FixedArray & | operator= (const ValueType r[VLength]) |
|
| ~FixedArray ()=default |
|
bool | operator== (const FixedArray &r) const |
|
bool | operator!= (const FixedArray &r) const |
|
reference | operator[] (short index) |
|
const_reference | operator[] (short index) const |
|
reference | operator[] (unsigned short index) |
|
const_reference | operator[] (unsigned short index) const |
|
reference | operator[] (int index) |
|
const_reference | operator[] (int index) const |
|
reference | operator[] (unsigned int index) |
|
const_reference | operator[] (unsigned int index) const |
|
reference | operator[] (long index) |
|
const_reference | operator[] (long index) const |
|
reference | operator[] (unsigned long index) |
|
const_reference | operator[] (unsigned long index) const |
|
reference | operator[] (long long index) |
|
const_reference | operator[] (long long index) const |
|
reference | operator[] (unsigned long long index) |
|
const_reference | operator[] (unsigned long long index) const |
|
void | SetElement (unsigned int index, const_reference value) |
|
const_reference | GetElement (unsigned int index) const |
|
ValueType * | GetDataPointer () |
|
const ValueType * | GetDataPointer () const |
|
ValueType * | data () |
|
const ValueType * | data () const |
|
Iterator | Begin () |
|
ConstIterator | Begin () const |
|
Iterator | End () |
|
ConstIterator | End () const |
|
| itkLegacyMacro (ReverseIterator rBegin()) |
|
| itkLegacyMacro (ConstReverseIterator rBegin() const) |
|
| itkLegacyMacro (ReverseIterator rEnd()) |
|
| itkLegacyMacro (ConstReverseIterator rEnd() const) |
|
const_iterator | cbegin () const noexcept |
|
iterator | begin () noexcept |
|
const_iterator | begin () const noexcept |
|
const_iterator | cend () const noexcept |
|
iterator | end () noexcept |
|
const_iterator | end () const noexcept |
|
reverse_iterator | rbegin () |
|
const_reverse_iterator | rbegin () const |
|
const_reverse_iterator | crbegin () const |
|
reverse_iterator | rend () |
|
const_reverse_iterator | rend () const |
|
const_reverse_iterator | crend () const |
|
SizeType | Size () const |
|
constexpr SizeType | size () const |
|
void | Fill (const ValueType &) |
|
void | swap (FixedArray &other) |
|
template<typename TCoordRep = double, unsigned int VIndexDimension = 2>
class itk::ContinuousIndex< TCoordRep, VIndexDimension >
A templated class holding a point in n-Dimensional image space.
ContinuousIndex is a templated class that holds a set of coordinates (components). The template parameter TCoordRep can be any floating point type (float, double). The VIndexDimension defines the number of components in the continuous index array.
- See also
- Point
-
Index
- Examples
- SphinxExamples/src/Core/ImageFunction/LinearlyInterpolatePositionInImage/Code.cxx.
Definition at line 46 of file itkContinuousIndex.h.