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

📄 main.cpp

📁 KLT: An Implementation of the Kanade-Lucas-Tomasi Feature Tracker KLT: An Implementation of the
💻 CPP
字号:
// main.cpp : Defines the entry point for the console application.
//

#include <stdio.h>  // printf

extern "C" {
	void RunExample1();
	void RunExample2();
	void RunExample3();
	void RunExample4();
	void RunExample5();
}

int main(int argc, char* argv[])
{
	// select which example to run here
	const int which = 1;

	// run the appropriate example
	switch (which) {
	case 1:  RunExample1();  break;
	case 2:  RunExample2();  break;
	case 3:  RunExample3();  break;
	case 4:  RunExample4();  break;  // Note:  example4 reads output from example 3
	case 5:  RunExample5();  break;
	default:  printf("There is no example number %d\n", which);
	}
	return 0;
}

⌨️ 快捷键说明

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