18#ifndef itkVariableLengthVector_h
19#define itkVariableLengthVector_h
33template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
34struct VariableLengthVectorExpression;
90template <
typename TValue>
110 struct AllocateRootPolicy
126 struct AlwaysReallocate : AllocateRootPolicy
129 operator()(
unsigned int itkNotUsed(newSize),
unsigned int itkNotUsed(oldSize))
const
152 struct NeverReallocate : AllocateRootPolicy
155 operator()([[maybe_unused]]
unsigned int newSize, [[maybe_unused]]
unsigned int oldSize)
const
157 itkAssertInDebugAndIgnoreInReleaseMacro(newSize == oldSize &&
158 "SetSize is expected to never change the VariableLengthVector size...");
180 struct ShrinkToFit : AllocateRootPolicy
183 operator()(
unsigned int newSize,
unsigned int oldSize)
const
185 return newSize != oldSize;
215 struct DontShrinkToFit : AllocateRootPolicy
218 operator()(
unsigned int newSize,
unsigned int oldSize)
const
220 return newSize > oldSize;
242 struct KeepValuesRootPolicy
266 struct KeepOldValues : KeepValuesRootPolicy
268 template <
typename TValue2>
270 operator()(
unsigned int newSize,
unsigned int oldSize, TValue2 * oldBuffer, TValue2 * newBuffer)
const
272 itkAssertInDebugAndIgnoreInReleaseMacro(newBuffer);
273 const size_t nb = std::min(newSize, oldSize);
274 itkAssertInDebugAndIgnoreInReleaseMacro(nb == 0 || (nb > 0 && oldBuffer !=
nullptr));
275 std::copy_n(oldBuffer, nb, newBuffer);
295 struct DumpOldValues : KeepValuesRootPolicy
297 template <
typename TValue2>
299 operator()(
unsigned int itkNotUsed(newSize),
300 unsigned int itkNotUsed(oldSize),
301 TValue2 * itkNotUsed(oldBuffer),
302 TValue2 * itkNotUsed(newBuffer))
const
309 using ValueType = TValue;
310 using ComponentType = TValue;
311 using RealValueType =
typename NumericTraits<ValueType>::RealType;
312 using Self = VariableLengthVector;
315 using ElementIdentifier =
unsigned int;
323 VariableLengthVector() =
default;
333 explicit VariableLengthVector(
unsigned int length);
348 VariableLengthVector(ValueType * datain,
unsigned int sz,
bool LetArrayManageMemory =
false);
369 VariableLengthVector(
const ValueType * datain,
unsigned int sz,
bool LetArrayManageMemory =
false);
390 template <
typename T>
391 VariableLengthVector(
const VariableLengthVector<T> & v)
393 m_NumElements = v.Size();
394 m_LetArrayManageMemory =
true;
395 if (m_NumElements != 0)
397 m_Data = this->AllocateElements(m_NumElements);
398 itkAssertInDebugAndIgnoreInReleaseMacro(m_Data !=
nullptr);
399 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
401 this->m_Data[i] =
static_cast<ValueType
>(v[i]);
418 VariableLengthVector(
const VariableLengthVector<TValue> & v);
429 Swap(Self & v)
noexcept
431 itkAssertInDebugAndIgnoreInReleaseMacro(m_LetArrayManageMemory == v.m_LetArrayManageMemory);
433 swap(v.m_Data, m_Data);
434 swap(v.m_NumElements, m_NumElements);
444 VariableLengthVector(Self && v)
noexcept;
455 operator=(Self && v)
noexcept;
473 template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
474 VariableLengthVector(
const VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp> & rhs);
495 template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
497 operator=(
const VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp> & rhs);
503 Fill(
const TValue & v);
517 template <
typename T>
519 operator=(
const VariableLengthVector<T> & v)
528 const ElementIdentifier N = v.Size();
529 this->SetSize(N, DontShrinkToFit(), DumpOldValues());
530 for (ElementIdentifier i = 0; i < N; ++i)
532 this->m_Data[i] =
static_cast<ValueType
>(v[i]);
553 operator=(
const Self & v);
564 FastAssign(
const Self & v);
574 operator=(
const TValue & v);
581 return m_NumElements;
586 return m_NumElements;
589 GetNumberOfElements()
const
591 return m_NumElements;
596 operator[](
unsigned int i)
598 return this->m_Data[i];
603 operator[](
unsigned int i)
const
605 return this->m_Data[i];
610 GetElement(
unsigned int i)
const
617 SetElement(
unsigned int i,
const TValue & value)
655 template <
typename TReallocatePolicy,
typename TKeepValuesPolicy>
657 SetSize(
unsigned int sz, TReallocatePolicy reallocatePolicy, TKeepValuesPolicy keepValues);
670 SetSize(
unsigned int sz,
bool destroyExistingData =
true)
675 if (destroyExistingData)
677 SetSize(sz, AlwaysReallocate(), KeepOldValues());
681 SetSize(sz, ShrinkToFit(), KeepOldValues());
688 DestroyExistingData();
703 SetData(TValue * datain,
bool LetArrayManageMemory =
false);
720 SetData(TValue * datain,
unsigned int sz,
bool LetArrayManageMemory =
false);
732 ~VariableLengthVector();
749 Reserve(ElementIdentifier size);
756 AllocateElements(ElementIdentifier size)
const;
759 GetDataPointer()
const
769 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
771 this->m_Data[i] -=
static_cast<ValueType
>(1.0);
780 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
782 this->m_Data[i] +=
static_cast<ValueType
>(1.0);
816 template <
typename T>
818 operator-=(
const VariableLengthVector<T> & v)
820 itkAssertInDebugAndIgnoreInReleaseMacro(m_NumElements == v.GetSize());
821 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
823 m_Data[i] -=
static_cast<ValueType
>(v[i]);
832 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
847 template <
typename T>
849 operator+=(
const VariableLengthVector<T> & v)
851 itkAssertInDebugAndIgnoreInReleaseMacro(m_NumElements == v.GetSize());
852 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
854 m_Data[i] +=
static_cast<ValueType
>(v[i]);
863 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
879 template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
881 operator+=(
const VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp> & rhs)
883 itkAssertInDebugAndIgnoreInReleaseMacro(rhs.Size() == Size());
884 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
886 m_Data[i] +=
static_cast<ValueType
>(rhs[i]);
900 template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
902 operator-=(
const VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp> & rhs)
904 itkAssertInDebugAndIgnoreInReleaseMacro(rhs.Size() == Size());
905 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
907 m_Data[i] -=
static_cast<ValueType
>(rhs[i]);
917 template <
typename T>
921 const ValueType & sc =
static_cast<ValueType
>(s);
922 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
935 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
948 template <
typename T>
952 const RealValueType sc = s;
953 for (ElementIdentifier i = 0; i < m_NumElements; ++i)
955 m_Data[i] =
static_cast<ValueType
>(
static_cast<RealValueType
>(m_Data[i]) / sc);
970 ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(Self);
978 GetSquaredNorm()
const;
984 return !m_LetArrayManageMemory;
988 bool m_LetArrayManageMemory{
true };
991 ElementIdentifier m_NumElements{ 0 };
1006template <
typename T>
1007struct IsArray : FalseType
1011template <
typename T>
1012struct IsArray<itk::VariableLengthVector<T>> : TrueType
1015template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
1016struct IsArray<VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp>> : TrueType
1037template <
typename TExpr>
1046 Load(
const Type & v,
unsigned int itkNotUsed(idx))
1062template <
typename TExpr1,
typename TExpr2>
1063inline std::enable_if_t<mpl::And<mpl::IsArray<TExpr1>, mpl::IsArray<TExpr2>>::Value,
unsigned int>
1064GetSize(
const TExpr1 & lhs, [[maybe_unused]]
const TExpr2 & rhs)
1066 itkAssertInDebugAndIgnoreInReleaseMacro(lhs.Size() == rhs.Size());
1080template <
typename TExpr1,
typename TExpr2>
1081inline std::enable_if_t<mpl::And<mpl::IsArray<TExpr1>, mpl::Not<mpl::IsArray<TExpr2>>>::Value,
unsigned int>
1082GetSize(
const TExpr1 & lhs,
const TExpr2 & itkNotUsed(rhs))
1096template <
typename TExpr1,
typename TExpr2>
1097inline std::enable_if_t<mpl::And<mpl::IsArray<TExpr2>, mpl::Not<mpl::IsArray<TExpr1>>>::Value,
unsigned int>
1098GetSize(
const TExpr1 & itkNotUsed(lhs),
const TExpr2 & rhs)
1103template <
typename T>
1104struct GetType<VariableLengthVector<T>>
1108 Load(
const VariableLengthVector<T> & v,
unsigned int idx)
1113template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
1114struct GetType<VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp>>
1116 using Type =
typename VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp>::ResType;
1118 Load(
const VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp> & v,
unsigned int idx)
1139template <
typename TExpr1,
typename TExpr2>
1140struct CanBeAddedOrSubtracted
1141 : mpl::Or<mpl::And<mpl::IsArray<TExpr1>, mpl::IsArray<TExpr2>>,
1142 mpl::And<mpl::IsArray<TExpr1>, mpl::IsNumber<TExpr2>>,
1143 mpl::And<mpl::IsNumber<TExpr1>, mpl::IsArray<TExpr2>>>
1157template <
typename TExpr1,
typename TExpr2>
1158struct CanBeMultiplied
1159 : mpl::Or<mpl::And<mpl::IsArray<TExpr1>, mpl::IsNumber<TExpr2>>,
1160 mpl::And<mpl::IsNumber<TExpr1>, mpl::IsArray<TExpr2>>>
1174template <
typename TExpr1,
typename TExpr2>
1175struct CanBeDivided : mpl::And<mpl::IsArray<TExpr1>, mpl::IsNumber<TExpr2>>
1206template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
1207struct VariableLengthVectorExpression
1209 VariableLengthVectorExpression(
const TExpr1 & lhs,
const TExpr2 & rhs)
1215 static_assert(std::is_base_of_v<Details::op::BinaryOperationConcept, TBinaryOp>,
1216 "The Binary Operation shall inherit from BinaryOperationConcept");
1223 return Details::GetSize(m_lhs, m_rhs);
1228 typename mpl::PromoteType<typename Details::GetType<TExpr1>::Type,
typename Details::GetType<TExpr2>::Type>::Type;
1230 using RealValueType =
typename NumericTraits<ResType>::RealType;
1243 operator[](
unsigned int idx)
const
1245 itkAssertInDebugAndIgnoreInReleaseMacro(idx < Size());
1246 return TBinaryOp::Apply(Details::GetType<TExpr1>::Load(m_lhs, idx), Details::GetType<TExpr2>::Load(m_rhs, idx));
1255 GetSquaredNorm()
const;
1258 const TExpr1 & m_lhs;
1259 const TExpr2 & m_rhs;
1271template <
typename TExpr1,
typename TExpr2>
1272inline std::enable_if_t<Details::op::CanBeAddedOrSubtracted<TExpr1, TExpr2>::Value,
1273 VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Plus>>
1274operator+(
const TExpr1 & lhs,
const TExpr2 & rhs)
1276 return VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Plus>(lhs, rhs);
1288template <
typename TExpr1,
typename TExpr2>
1289inline std::enable_if_t<Details::op::CanBeAddedOrSubtracted<TExpr1, TExpr2>::Value,
1290 VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Sub>>
1291operator-(
const TExpr1 & lhs,
const TExpr2 & rhs)
1293 return VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Sub>(lhs, rhs);
1304template <
typename TExpr1,
typename TExpr2>
1305inline std::enable_if_t<Details::op::CanBeMultiplied<TExpr1, TExpr2>::Value,
1306 VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Mult>>
1307operator*(
const TExpr1 & lhs,
const TExpr2 & rhs)
1309 return VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Mult>(lhs, rhs);
1319template <
typename TExpr1,
typename TExpr2>
1320inline std::enable_if_t<Details::op::CanBeDivided<TExpr1, TExpr2>::Value,
1321 VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Div>>
1322operator/(
const TExpr1 & lhs,
const TExpr2 & rhs)
1324 return VariableLengthVectorExpression<TExpr1, TExpr2, Details::op::Div>(lhs, rhs);
1330template <
typename TExpr1,
typename TExpr2,
typename TBinaryOp>
1332operator<<(std::ostream & os,
const VariableLengthVectorExpression<TExpr1, TExpr2, TBinaryOp> & v)
1338 for (
unsigned int i = 1, N = v.Size(); i != N; ++i)
1351template <
typename TExpr>
1352inline std::enable_if_t<mpl::IsArray<TExpr>::Value,
typename TExpr::RealValueType>
1353GetNorm(
const TExpr & v)
1355 return static_cast<typename TExpr::RealValueType
>(std::sqrt(
static_cast<double>(GetSquaredNorm(v))));
1363template <
typename TExpr>
1364inline std::enable_if_t<mpl::IsArray<TExpr>::Value,
typename TExpr::RealValueType>
1365GetSquaredNorm(
const TExpr & v)
1367 using RealValueType =
typename TExpr::RealValueType;
1368 RealValueType sum = 0.0;
1369 for (
unsigned int i = 0, N = v.Size(); i < N; ++i)
1371 const RealValueType value = v[i];
1372 sum += value * value;
1382template <
typename TValue>
1386 const unsigned int length = arr.Size();
1387 const int last =
static_cast<unsigned int>(length) - 1;
1390 for (
int i = 0; i < last; ++i)
1392 os << arr[i] <<
", ";
1421template <
typename T>
1432#ifndef ITK_MANUAL_INSTANTIATION
1433# include "itkVariableLengthVector.hxx"
bool ITKIOXML_EXPORT operator==(itk::FancyString &s, const std::string &)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
void swap(Array< T > &a, Array< T > &b) noexcept
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)
CovariantVector< T, VVectorDimension > operator*(const T &scalar, const CovariantVector< T, VVectorDimension > &v)
ConstNeighborhoodIterator< TImage > operator-(const ConstNeighborhoodIterator< TImage > &it, const typename ConstNeighborhoodIterator< TImage >::OffsetType &ind)
ConstNeighborhoodIterator< TImage > operator+(const ConstNeighborhoodIterator< TImage > &it, const typename ConstNeighborhoodIterator< TImage >::OffsetType &ind)