1.openpose在虚拟机下怎么安装
OpenPose也已经被用到Windows 7, Mac, CentOS,及Nvidia Jetson (TK1 and TX1)嵌入式系统上.然而, 我们目前不正式支持它们.
硬件要求
NVIDIA显卡,至少可用1.6 GB (Ubuntu 上用命令nvidia-smi检测可用GPU内存).
至少2 GB内存.
推荐cuDNN 及至少一个8核的CPU.
注意: 这些需求认为是缺省配置(如--net_resolution "656x368" and scale_number 1). 你可能需要更多 (with a greater netresolution and/or number of scales) 或更少的资源 (with smaller netresolution and/or using the MPI and MPI_4 models).
2.CMake和Openpose结合遇到的问题,怎么解决啊
#include
#define uint unsigned int
/* ********************************************* */
// 函数名称: delay()
// 函数功能:毫秒延时
/* ********************************************* */
void delay(uint z)
{
uint x,y;
for(x = 0; x < z; x++)
for(y = 0; y < 113; y++);
}
/* ***************************************************** */
// 函数名称:main()
// 函数功能:实现流水灯效果
// 入口参数:无
// 出口参数:无
/* ***************************************************** */
void main(void)
{
int i; //循环变量
while(1)
{
P2 = 0xff; //设定LED灯初始值
delay(1000);
for(i = 0;i < 8;i++)
{
P2 = P2 << 1; //移位、依次点亮
delay(1000); //延时
}
}
转载请注明出处windows之家 » win10安装openpose