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

📄 processcontrol.h

📁 使用BDA实现三维模型相关反馈的算法 注:1、使用本系统必须在本地计算机上安装matlab 2、算法使用的三维模型特征向量是从PSB模型库中自动提取的DESIRE三维模型特征向量 3、本系统自带
💻 H
字号:
#pragma once

#include <fstream>
#include <string>
#include "global.h"

class CProcessControl
{
public:
	CProcessControl(void);
	~CProcessControl(void);
	void readalllabelsfromfile(CString infilepath);
	void readallfeaturesfromfile(CString infilepath);
	void firstcomputedistance(int currentobject);
	void labelretrieval(int currentclass);
	void computenewfeaturematrix(void);
	void newcomputedistance(int currentobject);

private:
	std::ofstream outfile1;
	std::ofstream outfile2;
	std::ofstream outfile3;
};

⌨️ 快捷键说明

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