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

📄 graph.h

📁 在人脸检测的基础之上,对嘴部的运动表情进行分析,进行语音模拟.
💻 H
字号:

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

struct Graph_elem{
	BOOL  expand;
	double cumul_cost;
	double local_cost[8];
	CPoint pixel;
    struct Graph_elem* parent;
	int redraw;
};

struct Active_List_elem{
	struct Graph_elem* not_expanded;
	struct Active_List_elem* left;
	struct Active_List_elem* down;
};

BOOL Create_Active_List(struct Active_List_elem* min_cost,struct Graph_elem &first);
BOOL Add_Active_List(struct Active_List_elem* min_cost,struct Graph_elem *newListElem);
BOOL Remove_Active_List();

⌨️ 快捷键说明

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