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

📄 spherical.h

📁 普林斯顿开发的快速球面调和变换算法
💻 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 + -