ITK  5.4.0
Insight Toolkit
SphinxExamples/src/Core/Common/VariableLengthVector/Code.cxx
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include <itkVector.h>
void
VectorToVariableLengthVector();
void
VariableLengthVectorToVector();
int
main()
{
v.SetSize(2);
v[0] = 1;
v[1] = 2;
std::cout << v << std::endl;
for (unsigned int i = 0; i < v.Size(); ++i)
{
std::cout << v[i] << " ";
}
std::cout << std::endl;
VectorToVariableLengthVector();
VariableLengthVectorToVector();
return EXIT_SUCCESS;
}
void
VectorToVariableLengthVector()
{
std::cout << "VectorToVariableLengthVector()" << std::endl;
using FixedVectorType = itk::Vector<double, 2>;
FixedVectorType fixedLengthVector;
fixedLengthVector[0] = 1;
fixedLengthVector[1] = 2;
using VariableVectorType = itk::VariableLengthVector<double>;
VariableVectorType variableLengthVector;
// This works
variableLengthVector.SetSize(fixedLengthVector.Size());
variableLengthVector.SetData(fixedLengthVector.GetDataPointer());
// This crashes with both true and false
// variableLengthVector.SetData(fixedLengthVector.GetDataPointer(), 2, true);
std::cout << "variableLengthVector: " << variableLengthVector << std::endl;
}
void
VariableLengthVectorToVector()
{
std::cout << "VariableLengthVectorToVector()" << std::endl;
using VariableVectorType = itk::VariableLengthVector<double>;
VariableVectorType variableLengthVector;
variableLengthVector.SetSize(2);
variableLengthVector[0] = 1;
variableLengthVector[1] = 2;
using FixedVectorType = itk::Vector<double, 2>;
FixedVectorType fixedLengthVector;
for (unsigned int i = 0; i < FixedVectorType::GetVectorDimension(); ++i)
{
fixedLengthVector[i] = variableLengthVector[i];
}
// This function doesn't exist!
// fixedLengthVector.SetData(variableLengthVector.GetDataPointer());
std::cout << "fixedLengthVector: " << fixedLengthVector << std::endl;
}
itkVariableLengthVector.h
itk::GTest::TypedefsAndConstructors::Dimension2::VectorType
ImageBaseType::SpacingType VectorType
Definition: itkGTestTypedefsAndConstructors.h:53
itk::Vector
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
itk::VariableLengthVector::SetSize
void SetSize(unsigned int sz, TReallocatePolicy reallocatePolicy, TKeepValuesPolicy keepValues)
itk::VariableLengthVector
Represents an array whose length can be defined at run-time.
Definition: itkConstantBoundaryCondition.h:28
itkVector.h