spherical.h

来自「普林斯顿开发的快速球面调和变换算法」· C头文件 代码 · 共 36 行

H
36
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?