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

📄 ehmmobj.h

📁 face recognition using hmm. first version.
💻 H
字号:
/*
/*	Description: Implements a simple description 
/*		of an EHMMObj that is detected using EHMM
*/

#ifndef _EHMMObj_H_
#define _EHMMObj_H_

#include "Obj.h"
#include "EHMM.h"

class EHMMObj : public Obj
{
public:

	EHMMObj( );

	virtual ~EHMMObj( );

	void Create( const std::string &userName, int *noStates, int *noMix, int vecSize );

	void Load( const std::string &userName, const std::string &path );

	void Save( const std::string &path );

	EHMM& GetEHMM( );

private:

	//Hidden markov model associated to the object
	EHMM _ehmm;
};

#endif //_EHMMObj_H_

⌨️ 快捷键说明

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