📄 processcontrol.h
字号:
#pragma once
#include "globaldefine.h"
#include <fstream>
#include <string>
class CProcessControl
{
public:
CProcessControl(void);
~CProcessControl(void);
bool readalllabelsfromfile(CString infilepath);
bool readallfeaturesfromfile(CString infilepath);
bool firstcomputedistance(int currentobject);
private:
double distancetrans[OBJECTSNUMBER];
int nearestobjects[RETURNBACKNUM];
std::ofstream file0;
std::ofstream file1;
std::ofstream file2;
public:
bool labelretrieval(int currentclass);
bool newcomputedistance(int currentobject);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -