📄 spherical.h
字号:
// Spherical.h: interface for the Spherical class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SPHERICAL_H__7C0564CA_E4CC_4256_9F3E_B459E74498CC__INCLUDED_)
#define AFX_SPHERICAL_H__7C0564CA_E4CC_4256_9F3E_B459E74498CC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Spherical
{
public:
Spherical(int a, int b);
virtual ~Spherical();
public:
double* precomp_fft(int size);
void CountFea();
void CountA();
void Read(double **vox);
double **rsample;
double **isample;
double **rcoeff;
double **icoeff;
double **feature;
int R;
int B;
};
#endif // !defined(AFX_SPHERICAL_H__7C0564CA_E4CC_4256_9F3E_B459E74498CC__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -