vnl_float_1x1.h
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· C头文件 代码 · 共 24 行
H
24 行
// This is core/vnl/vnl_float_1x1.h
#ifndef vnl_float_1x1_h_
#define vnl_float_1x1_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
//:
// \file
// \brief 1x1 matrix of float
//
// vnl_float_1x1 is a vnl_matrix<float> of fixed size 1x1.
// It is merely a typedef for vnl_matrix_fixed<float,1,1>
//
// \author Peter Vanroose
// \date 29 June 2003
//
//-----------------------------------------------------------------------------
#include <vnl/vnl_matrix_fixed.h>
typedef vnl_matrix_fixed<float,1,1> vnl_float_1x1;
#endif // vnl_float_1x1_h_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?