Compute the distance between two indices.
#include "itkPoint.h" #include "itkIndex.h" #include <iostream> #include <string> int main(int, char *[]) { itk::Index<2> pixel1; pixel1.Fill(2); itk::Index<2> pixel2; pixel2.Fill(4); itk::Point<double,2> p1; p1[0] = pixel1[0]; p1[1] = pixel1[1]; itk::Point<double,2> p2; p2[0] = pixel2[0]; p2[1] = pixel2[1]; double distance = p2.EuclideanDistanceTo(p1); std::cout << "Distance: " << distance << std::endl; return EXIT_SUCCESS; }
cmake_minimum_required(VERSION 2.8) project(DistanceBetweenIndices) find_package(ITK REQUIRED) include(${ITK_USE_FILE}) if (ITKVtkGlue_LOADED) find_package(VTK REQUIRED) include(${VTK_USE_FILE}) endif() add_executable(DistanceBetweenIndices MACOSX_BUNDLE DistanceBetweenIndices.cxx) if( "${ITK_VERSION_MAJOR}" LESS 4 ) target_link_libraries(DistanceBetweenIndices ITKReview ${ITK_LIBRARIES}) else( "${ITK_VERSION_MAJOR}" LESS 4 ) target_link_libraries(DistanceBetweenIndices ${ITK_LIBRARIES}) endif( "${ITK_VERSION_MAJOR}" LESS 4 )
Click here to download DistanceBetweenIndices and its CMakeLists.txt file. Once the tarball DistanceBetweenIndices.tar has been downloaded and extracted,
cd DistanceBetweenIndices/build
cmake ..
cmake -DITK_DIR:PATH=/home/me/itk_build ..
Build the project:
make
and run it:
./DistanceBetweenIndices
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.
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.
For examples that use QuickView (which depends on VTK), you must have built ITK with Module_ITKVtkGlue=ON.
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.