ITK/Examples/SimpleOperations/DistanceBetweenPoints: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Daviddoria (talk | contribs) |
Daviddoria (talk | contribs) mNo edit summary |
||
Line 1: | Line 1: | ||
Compute the distance between two 3D points. This can easily be extended to ND by changing the Point template parameter. | |||
==DistanceBetweenPoints.cxx== | ==DistanceBetweenPoints.cxx== | ||
<source lang="cpp"> | <source lang="cpp"> | ||
Line 21: | Line 23: | ||
std::cout << "Dist: " << dist << std::endl; | std::cout << "Dist: " << dist << std::endl; | ||
return | return EXIT_SUCCESS; | ||
} | } | ||
Revision as of 13:47, 18 November 2010
Compute the distance between two 3D points. This can easily be extended to ND by changing the Point template parameter.
DistanceBetweenPoints.cxx
<source lang="cpp">
- include "itkPoint.h"
- include <iostream>
- include <string>
int main(int, char *[]) {
itk::Point<double,3> p0; p0[0] = 0.0; p0[1] = 0.0; p0[2] = 0.0;
itk::Point<double,3> p1; p1[0] = 1.0; p1[1] = 1.0; p1[2] = 1.0;
double dist = p0.EuclideanDistanceTo(p1); std::cout << "Dist: " << dist << std::endl;
return EXIT_SUCCESS;
}
</source>
CMakeLists.txt
<source lang="cmake"> cmake_minimum_required(VERSION 2.6)
PROJECT(Distance)
FIND_PACKAGE(ITK REQUIRED) INCLUDE(${ITK_USE_FILE})
ADD_EXECUTABLE(Distance Distance.cxx) TARGET_LINK_LIBRARIES(Distance ITKNumerics)
</source>