ITK/Examples/Operators/LaplacianOperator

From KitwarePublic

Jump to: navigation, search

Contents

LaplacianOperator.cxx

#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;
}

CMakeLists.txt

cmake_minimum_required(VERSION 2.8)
 
project(LaplacianOperator)
 
find_package(ItkVtkGlue REQUIRED)
include(${ItkVtkGlue_USE_FILE})
 
add_executable(LaplacianOperator LaplacianOperator.cxx)
target_link_libraries(LaplacianOperator
  ItkVtkGlue  ${VTK_LIBRARIES} ${ITK_LIBRARIES})

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

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.

Personal tools