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

📄 vnl_scatter_3x3.h

📁 InsightToolkit-1.4.0(有大量的优化算法程序)
💻 H
字号:
// This is core/vnl/algo/vnl_scatter_3x3.h
#ifndef vnl_scatter_3x3_h_
#define vnl_scatter_3x3_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
//:
// \file
// \brief
// \author Andrew W. Fitzgibbon, Oxford RRG
// \date   02 Oct 96
//
// \verbatim
//  Modifications:
//   18 Feb 2000. fsm: templated.
//   4/4/01 LSB (Manchester) documentation tidied
//   Feb.2002 - Peter Vanroose - brief doxygen comment placed on single line
//   13 Jan.2003 - Peter Vanroose - added missing implem. for sub_outer_product
// \endverbatim
//-----------------------------------------------------------------------------

#include <vnl/vnl_matrix_fixed.h>
#include <vnl/vnl_vector_fixed.h>

template <class T>
class vnl_scatter_3x3 : public vnl_matrix_fixed<T,3,3>
{
 public:
  typedef vnl_matrix_fixed<T,3,3> base;
  typedef vnl_vector_fixed<T,3> vect;

  //: Constructor.  Fills with zeros.
  vnl_scatter_3x3();

  //: Add v*v' to scatter.
  void add_outer_product(const vnl_vector_fixed<T,3> & v);

  //: Add v*u' to scatter.
  void add_outer_product(const vnl_vector_fixed<T,3> & u,
                         const vnl_vector_fixed<T,3> & v);

  //: Subtract v*v' from scatter.
  void sub_outer_product(const vnl_vector_fixed<T,3> & v);

  //: Subtract v*u' from scatter.
  void sub_outer_product(const vnl_vector_fixed<T,3> & u,
                         const vnl_vector_fixed<T,3> & v);

  //: Replace S with $(S+S^\top)/2$.
  void force_symmetric();

  //: Compute the eigensystem of S.
  void compute_eigensystem();

  //: Return the eigenvector corresponding to the smallest eigenvalue.
  vnl_vector_fixed<T,3> minimum_eigenvector() {
    if (!eigenvectors_currentp) compute_eigensystem();
    return vnl_vector_fixed<T,3>(V_(0,0), V_(1,0), V_(2,0));
  }

  //: Return the column matrix of eigenvectors, sorted in increasing order of eigenvalue.
  vnl_matrix_fixed<T,3,3>& V()
  {
    if (!eigenvectors_currentp) compute_eigensystem();
    return V_;
  }

 protected:
  bool symmetricp;
  bool eigenvectors_currentp;
  vnl_matrix_fixed<T,3,3> V_;
  vnl_vector_fixed<T,3> D;
};


#endif // vnl_scatter_3x3_h_

⌨️ 快捷键说明

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