ITK/Examples/SimpleOperations/VariableLengthVector: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
No edit summary
(Deprecate)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
main() works properly, but neither conversion seems to work.
{{warning|1=The media wiki content on this page is no longer maintained.  The examples presented on the https://itk.org/Wiki/*  pages likely require ITK version 4.13 or earlier releases.  In many cases, the examples on this page no longer conform to the best practices for modern ITK versions.
}}


==VariableLengthVector.cxx==
[https://itk.org/ITKExamples[ITK Sphinx Examples]]
<source lang="cpp">
#include <itkVariableLengthVector.h>
#include <itkVector.h>
#include <QtCore/qtextstream.h>
 
void VectorToVariableLengthVector();
void VariableLengthVectorToVector();
 
int main(int, char*[])
{
  typedef itk::VariableLengthVector<double> VectorType;
  VectorType v;
  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()
{
  // Seems to work, but then crashes!
 
  typedef itk::Vector<double, 2> FixedVectorType;
  FixedVectorType fixedLengthVector;
  fixedLengthVector[0] = 1;
  fixedLengthVector[1] = 2;
 
  typedef itk::VariableLengthVector<double> VariableVectorType;
  VariableVectorType variableLengthVector;
  variableLengthVector.SetSize(fixedLengthVector.Size());
  variableLengthVector.SetData(fixedLengthVector.GetDataPointer(), 2i);
  std::cout << "variableLengthVector: " << variableLengthVector << std::endl;
}
 
void VariableLengthVectorToVector()
{
  typedef itk::VariableLengthVector<double> VariableVectorType;
  VariableVectorType variableLengthVector;
  variableLengthVector.SetSize(2);
 
  variableLengthVector[0] = 1;
  variableLengthVector[1] = 2;
 
  typedef itk::Vector<double, 2> FixedVectorType;
  FixedVectorType fixedLengthVector;
 
  // This function doesn't exist!
  //fixedLengthVector.SetData(variableLengthVector.GetDataPointer());
  //std::cout << "fixedLengthVector: " << fixedLengthVector << std::endl;
}
 
</source>
 
==CMakeLists.txt==
<source lang="cmake">
cmake_minimum_required(VERSION 2.6)
 
PROJECT(VariableLengthVector)
 
FIND_PACKAGE(ITK REQUIRED)
INCLUDE(${ITK_USE_FILE})
 
ADD_EXECUTABLE(VariableLengthVector VariableLengthVector.cxx)
TARGET_LINK_LIBRARIES(VariableLengthVector ITKCommon)
 
 
</source>

Latest revision as of 21:00, 3 June 2019

Warning: The media wiki content on this page is no longer maintained. The examples presented on the https://itk.org/Wiki/* pages likely require ITK version 4.13 or earlier releases. In many cases, the examples on this page no longer conform to the best practices for modern ITK versions.

[ITK Sphinx Examples]