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

📄 itkhyperspherekernelmeanshiftmodeseeker.h

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

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: itkHypersphereKernelMeanShiftModeSeeker.h,v $
  Language:  C++
  Date:      $Date: 2005-07-26 15:54:57 $
  Version:   $Revision: 1.8 $

  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.

=========================================================================*/

#ifndef __itkHypersphereKernelMeanShiftModeSeeker_h
#define __itkHypersphereKernelMeanShiftModeSeeker_h

#include "itkMeanShiftModeSeekerBase.h"

#include "itkFixedArray.h"
#include "itkNumericTraits.h"

namespace itk{ 
namespace Statistics{

/** \class HypersphereKernelMeanShiftModeSeeker
 * \brief Evolves the mode using a hyperspherical kernel defined by a
 * radius (which is set by SetRadius) method.
 *
 * <b> Recent API changes </b>
 * The static const macro \c MeasurementVectorSize has been removed to allow the
 * length of the measurementvector to be determined at run time. It is now obtained
 * from the sample set as input. The typedef for \c MeasurementVectorSumType
 * has changed from FixedArray to Array.
 *  
 * \sa MeanShiftModeSeekerBase 
 */

template< class TSample >
class HypersphereKernelMeanShiftModeSeeker :
    public MeanShiftModeSeekerBase< TSample >
{
public:
  /** Standard class typedefs. */
  typedef HypersphereKernelMeanShiftModeSeeker Self;
  typedef MeanShiftModeSeekerBase< TSample > Superclass ;
  typedef SmartPointer<Self> Pointer;
  typedef SmartPointer<const Self> ConstPointer;

  /** Standard Macros */
  itkTypeMacro(HypersphereKernelMeanShiftModeSeeker, 
               MeanShiftModeSeekerBase);
  itkNewMacro(Self) ;
  
  /** Typedefs from the superclass */
  typedef typename Superclass::MeasurementVectorType MeasurementVectorType ;
  typedef typename Superclass::SearchResultVectorType SearchResultVectorType ;
  typedef typename Superclass::MeasurementType MeasurementType ;

  /** Type for the sum of measurements */
  typedef double RealMeasurementType ;

  /** Type fot the sum of measurement vectors used in computing the new
    * mode */
  typedef Array< RealMeasurementType > MeasurementVectorSumType;

  /** Sets the radius of the kernel */
  void SetSearchRadius(double radius) ;
  
  /** Gets the radius of the kernel  */
  double GetSearchRadius()
  { return m_SearchRadius ; }

  /** Returns the covariance matrix of the target sample data */ 
  MeasurementVectorType Evolve(MeasurementVectorType instance) ;
  
protected:
  HypersphereKernelMeanShiftModeSeeker() ;
  virtual ~HypersphereKernelMeanShiftModeSeeker() ;
  void PrintSelf(std::ostream& os, Indent indent) const;

  /** Computes the new mode with the given query point (queryPoint). The
    * new mode will be stored in the newPoint */ 
  inline bool ComputeMode(MeasurementVectorType queryPoint,
                          MeasurementVectorType& newPoint) ;

private:
  /** Radius of the kernel */
  double m_SearchRadius ;

  /** Temporary measurement vector sum: internal use */ 
  MeasurementVectorSumType m_TempVectorSum ;
  
  /** Temporary measurement vector: internal use */
  MeasurementVectorType m_TempVector ;
} ; // end of class
    
} // end of namespace Statistics 
} // end of namespace itk 

#ifndef ITK_MANUAL_INSTANTIATION
#include "itkHypersphereKernelMeanShiftModeSeeker.txx"
#endif

#endif

⌨️ 快捷键说明

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