ITK/Examples/SimpleOperations/VariableLengthVector: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
No edit summary
Line 1: Line 1:
main() works properly, but neither conversion seems to work.
==VariableLengthVector.cxx==
==VariableLengthVector.cxx==
<source lang="cpp">
<source lang="cpp">
#include <itkVariableLengthVector.h>
#include <itkVariableLengthVector.h>
#include <itkVector.h>
#include <itkVector.h>
#include <QtCore/qtextstream.h>


static void VectorToVariableLengthVector();
void VectorToVariableLengthVector();
static void VariableLengthVectorToVector();
void VariableLengthVectorToVector();


int main(int, char*[])
int main(int, char*[])
Line 31: Line 30:
void VectorToVariableLengthVector()
void VectorToVariableLengthVector()
{
{
   // Seems to work, but then crashes!
   std::cout << "VectorToVariableLengthVector()" << std::endl;
 
 
   typedef itk::Vector<double, 2> FixedVectorType;
   typedef itk::Vector<double, 2> FixedVectorType;
   FixedVectorType fixedLengthVector;
   FixedVectorType fixedLengthVector;
   fixedLengthVector[0] = 1;
   fixedLengthVector[0] = 1;
   fixedLengthVector[1] = 2;
   fixedLengthVector[1] = 2;
 
 
   typedef itk::VariableLengthVector<double> VariableVectorType;
   typedef itk::VariableLengthVector<double> VariableVectorType;
   VariableVectorType variableLengthVector;
   VariableVectorType variableLengthVector;
  // This works
   variableLengthVector.SetSize(fixedLengthVector.Size());
   variableLengthVector.SetSize(fixedLengthVector.Size());
   variableLengthVector.SetData(fixedLengthVector.GetDataPointer(), 2i);
   variableLengthVector.SetData(fixedLengthVector.GetDataPointer());
 
  // This crashes with both true and false
  //variableLengthVector.SetData(fixedLengthVector.GetDataPointer(), 2, true);
 
   std::cout << "variableLengthVector: " << variableLengthVector << std::endl;
   std::cout << "variableLengthVector: " << variableLengthVector << std::endl;
}
}
Line 47: Line 52:
void VariableLengthVectorToVector()
void VariableLengthVectorToVector()
{
{
  std::cout << "VariableLengthVectorToVector()" << std::endl;
   typedef itk::VariableLengthVector<double> VariableVectorType;
   typedef itk::VariableLengthVector<double> VariableVectorType;
   VariableVectorType variableLengthVector;
   VariableVectorType variableLengthVector;
   variableLengthVector.SetSize(2);
   variableLengthVector.SetSize(2);
 
 
   variableLengthVector[0] = 1;
   variableLengthVector[0] = 1;
   variableLengthVector[1] = 2;
   variableLengthVector[1] = 2;
Line 56: Line 62:
   typedef itk::Vector<double, 2> FixedVectorType;
   typedef itk::Vector<double, 2> FixedVectorType;
   FixedVectorType fixedLengthVector;
   FixedVectorType fixedLengthVector;
  for(unsigned int i = 0; i < FixedVectorType::GetVectorDimension(); i++)
    {
    fixedLengthVector[i] = variableLengthVector[i];
    }


   // This function doesn't exist!
   // This function doesn't exist!
   //fixedLengthVector.SetData(variableLengthVector.GetDataPointer());
   //fixedLengthVector.SetData(variableLengthVector.GetDataPointer());
   //std::cout << "fixedLengthVector: " << fixedLengthVector << std::endl;
   std::cout << "fixedLengthVector: " << fixedLengthVector << std::endl;
}
}



Revision as of 15:25, 10 March 2011

VariableLengthVector.cxx

<source lang="cpp">

  1. include <itkVariableLengthVector.h>
  2. include <itkVector.h>
  3. 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() {

 std::cout << "VectorToVariableLengthVector()" << std::endl;
 typedef itk::Vector<double, 2> FixedVectorType;
 FixedVectorType fixedLengthVector;
 fixedLengthVector[0] = 1;
 fixedLengthVector[1] = 2;
 typedef itk::VariableLengthVector<double> VariableVectorType;
 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;
 typedef itk::VariableLengthVector<double> VariableVectorType;
 VariableVectorType variableLengthVector;
 variableLengthVector.SetSize(2);
 variableLengthVector[0] = 1;
 variableLengthVector[1] = 2;
 typedef itk::Vector<double, 2> FixedVectorType;
 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;

}

</source>

CMakeLists.txt

<syntaxhighlight lang="cmake"> cmake_minimum_required(VERSION 3.9.5)

project(VariableLengthVector)

find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED)

 find_package(VTK REQUIRED)
 include(${VTK_USE_FILE})

endif()

add_executable(VariableLengthVector MACOSX_BUNDLE VariableLengthVector.cxx)

if( "${ITK_VERSION_MAJOR}" LESS 4 )

 target_link_libraries(VariableLengthVector ITKReview ${ITK_LIBRARIES})

else( "${ITK_VERSION_MAJOR}" LESS 4 )

 target_link_libraries(VariableLengthVector ${ITK_LIBRARIES})

endif( "${ITK_VERSION_MAJOR}" LESS 4 )

</syntaxhighlight>

Download and Build VariableLengthVector

Click here to download VariableLengthVector and its CMakeLists.txt file. Once the tarball VariableLengthVector.tar has been downloaded and extracted,

cd VariableLengthVector/build
  • If ITK is installed:
cmake ..
  • If ITK is not installed but compiled on your system, you will need to specify the path to your ITK build:
cmake -DITK_DIR:PATH=/home/me/itk_build ..

Build the project:

make

and run it:

./VariableLengthVector

WINDOWS USERS PLEASE NOTE: Be sure to add the ITK bin directory to your path. This will resolve the ITK dll's at run time.

Building All of the Examples

Many of the examples in the ITK Wiki Examples Collection require VTK. You can build all of the the examples by following these instructions. If you are a new VTK user, you may want to try the Superbuild which will build a proper ITK and VTK.

ItkVtkGlue

ITK >= 4

For examples that use QuickView (which depends on VTK), you must have built ITK with Module_ITKVtkGlue=ON.

ITK < 4

Some of the ITK Examples require VTK to display the images. If you download the entire ITK Wiki Examples Collection, the ItkVtkGlue directory will be included and configured. If you wish to just build a few examples, then you will need to download ItkVtkGlue and build it. When you run cmake it will ask you to specify the location of the ItkVtkGlue binary directory.