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

📄 clabel.h

📁 face recognition test source code
💻 H
字号:
typedef struct LABEL_TAG
	{
	char str[MAX_NAME];
	int integer;
	} LAB, *PLABEL;

#define LABEL_INIT	100
#define LABEL_INC		25

class CLabel : public CObject
	{
	private:
		PLABEL	label;
		short num_label;					/*number of labels in the label list*/
		short num_alloc_label;			/*number of labels for which memory has been allocated*/
		
	public:
		CLabel();
		~CLabel();
		
		int SetLabel(struct data_entry *current, char *str_label);
		char *GetLabel(struct data_entry *current);
		int GetLabelInt(char *str);
      int GetClassInt(int i);
		char *GetClassStr(int i);
		int NumClass();
   };

⌨️ 快捷键说明

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