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

📄 vnl_matops.cxx

📁 InsightToolkit-1.4.0(有大量的优化算法程序)
💻 CXX
字号:
// This is vxl/vnl/vnl_matops.cxx
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma implementation
#endif
//:
// \file
// \author Andrew W. Fitzgibbon, Oxford RRG
// \date   05 Aug 96
//
//-----------------------------------------------------------------------------

#include "vnl_matops.h"
#include <vcl_cassert.h>

vnl_matrix<double> vnl_matops::cat(vnl_matrix<double> const &A, vnl_matrix<double> const &B) {
  int rowsA = A.rows();
  int colsA = A.columns();
  int rowsB = B.rows();
  int colsB = B.columns();

  assert(rowsA == rowsB);

  vnl_matrix<double> M(rowsA,colsA+colsB);
  M.update(A,0,0);
  M.update(B,0,colsA);

  return M;
}

vnl_matrix<double> vnl_matops::cat(vnl_matrix<double> const &A, vnl_vector<double> const &B) {
  int rowsA = A.rows();
  int colsA = A.columns();
  int rowsB = B.size();

  assert(rowsA == rowsB);

  vnl_matrix<double> M(rowsA,colsA+1);
  M.update(A,0,0);
  M.set_column(colsA,B);

  return M;
}

vnl_matrix<double> vnl_matops::cat(vnl_vector<double> const &A, vnl_matrix<double> const &B) {
  int rowsA = A.size();
  int rowsB = B.rows();
  int colsB = B.columns();

  assert(rowsA == rowsB);

  vnl_matrix<double> M(rowsA,colsB+1);
  M.set_column(0,A);
  M.update(B,0,1);

  return M;
}

vnl_matrix<double> vnl_matops::vcat(vnl_matrix<double> const &A, vnl_matrix<double> const &B) {
  int rowsA = A.rows();
  int colsA = A.columns();
  int rowsB = B.rows();
  int colsB = B.columns();

  assert(colsA == colsB);

  vnl_matrix<double> M(rowsA+rowsB,colsA);
  M.update(A,0,0);
  M.update(B,rowsA,0);

  return M;
}

extern "C" int dtrans_(double *a, const int& m, const int& n, const int& mn, int* move, const int& iwrk, int* iok);

//: Return fro_norm( (A ./ B) - mean(A ./ B) )
double vnl_matops::homg_diff(vnl_matrix<double> const& A, vnl_matrix<double> const& B)
{
  vnl_matrix<double> ratio = element_quotient(A, B);

  return (ratio - ratio.mean()).fro_norm();
}

#define implement_converters(U,V)                           \
vnl_matrix<U> make_matrix_ ## U(vnl_matrix<V> const& M)     \
{                                                           \
  unsigned m = M.rows();                                    \
  unsigned n = M.columns();                                 \
  vnl_matrix<U> ret(m, n);                                  \
  for (unsigned i = 0; i < m; ++i)                           \
    for (unsigned j = 0; j < n; ++j)                         \
      ret(i,j) = U(M(i,j));                                 \
  return ret;                                               \
}                                                           \
                                                            \
vnl_vector<U> make_vector_ ## U(vnl_vector<V> const& v)     \
{                                                           \
  unsigned n = v.size();                                    \
  vnl_vector<U> ret(n);                                     \
  for (unsigned i = 0; i < n; ++i)                           \
    ret[i] = U(v[i]);                                       \
  return ret;                                               \
}                                                           \

implement_converters(double,float)

implement_converters(float,double)

vnl_matrix<double>  vnl_matops::f2d(vnl_matrix<float> const& M)
{
  return make_matrix_double(M);
}


vnl_matrix<float>  vnl_matops::d2f(vnl_matrix<double> const& M)
{
  return make_matrix_float(M);
}

vnl_vector<double>  vnl_matops::f2d(vnl_vector<float> const& M)
{
  return make_vector_double(M);
}


vnl_vector<float>  vnl_matops::d2f(vnl_vector<double> const& M)
{
  return make_vector_float(M);
}

⌨️ 快捷键说明

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