ITK/Examples/Operators/LaplacianOperator: Difference between revisions

From KitwarePublic
< ITK‎ | Examples
Jump to navigationJump to search
(Created page with "==LaplacianOperator.cxx== <source lang="cpp"> #include <itkLaplacianOperator.h> int main(int, char*[]) { typedef itk::LaplacianOperator<float, 2> LaplacianOperatorType; Lapl...")
 
(Deprecated content that is moved to sphinx)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==LaplacianOperator.cxx==
{{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 releasesIn many cases, the examples on this page no longer conform to the best practices for modern ITK versions.}}
<source lang="cpp">
#include <itkLaplacianOperator.h>
 
int main(int, char*[])
{
  typedef itk::LaplacianOperator<float, 2> LaplacianOperatorType;
  LaplacianOperatorType laplacianOperator;
  itk::Size<2> radius;
  radius.Fill(1);
  laplacianOperator.CreateToRadius(radius);
 
  std::cout << "Size: " << laplacianOperator.GetSize() << std::endl;
 
  std::cout << laplacianOperator << std::endl;
 
   for(unsigned int i = 0; i < laplacianOperator.GetSize()[0] * laplacianOperator.GetSize()[1]; i++)
  {
    std::cout << laplacianOperator.GetOffset(i) << " " << laplacianOperator.GetElement(i) << std::endl;
  }
  return EXIT_SUCCESS;
}
 
</source>
 
{{ITKVTKCMakeLists|LaplacianOperator|}}

Latest revision as of 15:51, 6 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.