⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itkneighborhoodoperatortest.cxx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 CXX
字号:
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: itkNeighborhoodOperatorTest.cxx,v $
  Language:  C++
  Date:      $Date: 2007-08-20 13:00:21 $
  Version:   $Revision: 1.22 $

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include "vnl/vnl_vector.h"
#include "itkDerivativeOperator.h"
#include "itkForwardDifferenceOperator.h"
#include "itkBackwardDifferenceOperator.h"
#include "itkGaussianOperator.h"
#include "itkLaplacianOperator.h"
#include "itkSobelOperator.h"
#include "itkSize.h"
namespace
{
  void println(const char *c) { std::cout << std::endl << c << std::endl; }
}

int itkNeighborhoodOperatorTest(int, char* [] )
{
  println("Testing derivative operator");
  itk::DerivativeOperator<float, 3, vnl_vector<float> > d;
  d.SetOrder(2);
  d.SetDirection(1);
  d.CreateDirectional();
  d.Print(std::cout);

  println("Testing Gaussian operator");
  itk::GaussianOperator<float,2, vnl_vector<float> > g;
  g.SetVariance(2.3);
  g.SetMaximumError(.01);
  g.CreateDirectional();
  g.Print(std::cout);

  println("Testing ForwardDifferenceOperator");
  itk::ForwardDifferenceOperator<float, 4, vnl_vector<float> > f;
  itk::Size<4> sz;
  sz[0] = sz[1] = sz[2] = sz[3] = 2;
  f.SetDirection(2);
  f.CreateToRadius(sz);
  f.Print(std::cout);

  println("Testing BackwardDifferenceOperator");
  itk::BackwardDifferenceOperator<float, 2, vnl_vector<float> > b;
  b.SetDirection(0);
  b.CreateDirectional();
  b.Print(std::cout);

  unsigned int i;
  
  double scales[3] = {1.0/ 2.0, 1.0 / 4.0, 1.0 / 5.0};
  println("Testing 1D LaplacianOperator");
  itk::LaplacianOperator<float, 1, vnl_vector<float> > a1;
  a1.SetDerivativeScalings (scales);
  a1.CreateOperator();
  a1.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < a1.Size(); ++i)
    {
    std::cout << a1[i];
    if (i < a1.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;

  println("Testing 2D LaplacianOperator");
  itk::LaplacianOperator<float, 2, vnl_vector<float> > a2;
  a2.SetDerivativeScalings (scales);
  a2.CreateOperator();
  a2.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < a2.Size(); ++i)
    {
    std::cout << a2[i];
    if (i < a2.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;

  println("Testing 3D LaplacianOperator");
  itk::LaplacianOperator<float, 3, vnl_vector<float> > a3;
  a3.SetDerivativeScalings (scales);
  a3.CreateOperator();
  a3.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < a3.Size(); ++i)
    {
    std::cout << a3[i];
    if (i < a3.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;
  
  println("Testing SobelOperator2D");
  itk::SobelOperator<float, 2, vnl_vector<float> > c;
  c.SetDirection(0);
  c.CreateDirectional();
  c.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < c.Size(); ++i)
    {
    std::cout << c[i];
    if (i < c.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;
  
  c.SetDirection(1);
  c.CreateDirectional();
  c.Print(std::cout);
  
  std::cout << "    Operator = [ ";
  for (i=0; i < c.Size(); ++i)
    {
    std::cout << c[i];
    if (i < c.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;

  println("Testing SobelOperator3D");
  itk::SobelOperator<float, 3, vnl_vector<float> > c2;
  c2.SetDirection(0);
  c2.CreateDirectional();
  c2.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < c2.Size(); ++i)
    {
    std::cout << c2[i];
    if (i < c2.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;

  c2.SetDirection(1);
  c2.CreateDirectional();
  c2.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < c2.Size(); ++i)
    {
    std::cout << c2[i];
    if (i < c2.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;

  c2.SetDirection(2);
  c2.CreateDirectional();
  c2.Print(std::cout);

  std::cout << "    Operator = [ ";
  for (i=0; i < c2.Size(); ++i)
    {
    std::cout << c2[i];
    if (i < c2.Size() - 1)
      {
      std::cout << ", ";
      }
    }
  std::cout << "]" << std::endl << std::endl;
  
  return EXIT_SUCCESS;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -