processcontrol.h
来自「使用BDA实现三维模型相关反馈的算法 注:1、使用本系统必须在本地计算机上安装」· C头文件 代码 · 共 24 行
H
24 行
#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 + =
减小字号Ctrl + -
显示快捷键?