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

📄 vnl_io_sym_matrix.txx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 TXX
字号:
// This is core/vnl/io/vnl_io_sym_matrix.txx
#ifndef vnl_io_sym_matrix_txx_
#define vnl_io_sym_matrix_txx_
//:
// \file

#include "vnl_io_sym_matrix.h"
#include <vnl/vnl_sym_matrix.h>
#include <vsl/vsl_b_read_block_old.h>
#include <vsl/vsl_block_binary.h>
#include <vsl/vsl_indent.h>

//=================================================================================
//: Binary save self to stream.
template<class T>
void vsl_b_write(vsl_b_ostream & os, const vnl_sym_matrix<T> & p)
{
  const short version_no = 2;
  vsl_b_write(os, version_no);
  vsl_b_write(os, p.rows());

  // Calling p.begin() on empty matrix causes segfault
  if (p.size()>0)
    vsl_block_binary_write(os, p.data_block(), p.size());
}

//=================================================================================
//: Binary load self from stream.
template<class T>
void vsl_b_read(vsl_b_istream &is, vnl_sym_matrix<T> & p)
{
  if (!is) return;

  short v;
  unsigned n;
  vsl_b_read(is, v);
  switch (v)
  {
   case 1:
    vsl_b_read(is, n);
    p.set_size(n);
    // Calling begin() on empty matrix causes segfault
    if (n>0)
      vsl_b_read_block_old(is, p.data_block(), p.size());
    break;

   case 2:
    vsl_b_read(is, n);
    p.set_size(n);
    // Calling begin() on empty matrix causes segfault
    if (n>0)
      vsl_block_binary_read(is, p.data_block(), p.size());
    break;

   default:
    vcl_cerr << "I/O ERROR: vsl_b_read(vsl_b_istream&, vnl_sym_matrix<T>&)\n"
             << "           Unknown version number "<< v << '\n';
    is.is().clear(vcl_ios::badbit); // Set an unrecoverable IO error on stream
    return;
  }
}

//====================================================================================
//: Output a human readable summary to the stream
template<class T>
void vsl_print_summary(vcl_ostream & os,const vnl_sym_matrix<T> & p)
{
  os<<"Size: "<<p.rows()<<" x "<<p.cols()<<vcl_endl;

  unsigned int n = 5;


  if (n>p.cols()) n=p.cols();

  vsl_indent_inc(os);
  for (unsigned int i=0;i<n;i++)
  {
    os<<vsl_indent()<<" (";

    for ( unsigned int j=0; j<=i; j++)
      os<<p(i,j)<<' ';
    os << vcl_endl;
  }
  if (p.rows()>n) os <<vsl_indent()<<" (...\n";
  vsl_indent_dec(os);
}


#define VNL_IO_SYM_MATRIX_INSTANTIATE(T) \
template void vsl_print_summary(vcl_ostream &, const vnl_sym_matrix<T > &); \
template void vsl_b_read(vsl_b_istream &, vnl_sym_matrix<T > &); \
template void vsl_b_write(vsl_b_ostream &, const vnl_sym_matrix<T > &)

#endif // vnl_io_sym_matrix_txx_

⌨️ 快捷键说明

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