ITK  6.0.0
Insight Toolkit
SphinxExamples/src/Core/Common/DistanceBetweenIndices/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 "itkPoint.h"
#include "itkIndex.h"
#include "itkMath.h"
#include <iostream>
int
main()
{
auto pixel1 = itk::Index<2>::Filled(2);
auto pixel2 = itk::Index<2>::Filled(4);
p1[0] = pixel1[0];
p1[1] = pixel1[1];
p2[0] = pixel2[0];
p2[1] = pixel2[1];
double distance = p2.EuclideanDistanceTo(p1);
std::cout << "Distance: " << distance << std::endl;
}
itk::Point::EuclideanDistanceTo
RealType EuclideanDistanceTo(const Point< TCoordinateB, VPointDimension > &pa) const
Definition: itkPoint.h:302
itkPoint.h
itkIndex.h
itk::Index::Filled
static constexpr Self Filled(const IndexValueType value)
Definition: itkIndex.h:503
itk::Point< double, 2 >
itkMath.h