-
headpose估计
应用背景基于OpenCV和OpenGL的头部姿态估计;关键技术我用PNP从对应点得到头部的六自由度位姿。我以前在手上选出来的信件,但得到的二维位置:左眼,右眼,左耳,右耳,左嘴,右嘴和鼻子。然后我用一个女性的头部三维模型下(在这里)得到相同的特征的三维点,简单地用meshlab的“获取信息”选择。解决一个PNP(Perspective-N-Point)问题是好的当你想得到2D-3D对应的三维物体的方位(6DOF)。由作者
- 2022-03-17 04:30:24下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
enter mathematical formula calculation of the source code, we chin
通过输入数学公式进行数学计算的源代码,大家下巴-enter mathematical formula calculation of the source code, we chin
- 2022-05-14 07:17:09下载
- 积分:1
-
问题
poj 2408 解题代码,北大acm在线可以测试。-problem-solving poj 2408 code, North acm test online.
- 2022-02-01 04:39:11下载
- 积分:1
-
中序遍历二叉树
此算法是在VS中实现的二叉遍历算法,二叉树的基本的遍历规则有三种:前序遍历,中序遍历和后序遍历。对于每一种遍历,树中每个结点都要经过3次。前序遍历在第一次遇到结点时立即访问,中序遍历第二次遇到结点时访问,后序遍历则到第三次遇到结点时才访问。
- 2022-07-23 19:18:16下载
- 积分:1
-
给某个玩家100元的资本,让他不停押注直到输光,计算需要赌博多少次?
如果把次数放在数组ruinLength[]中,进行1000次实验后,看看破产的最大次数...
给某个玩家100元的资本,让他不停押注直到输光,计算需要赌博多少次?
如果把次数放在数组ruinLength[]中,进行1000次实验后,看看破产的最大次数、
最小次数和平均次数分别是多少?-100 to a player" s capital, so that he kept until the bet输光to calculate how many times the need for gambling? If the number on the array ruinLength [] in experiments carried out after 1000 to see the largest number of bankruptcy, the minimum number and the average number of how many were?
- 2022-02-01 04:15:03下载
- 积分:1
-
问题算法源代码:骑士遍历、万年历、N皇后问题回溯算法、动态计算网络最长最短路线、货郎担分枝限界图形演示、货郎担限界算法、矩阵乘法动态规划、网络最短路径Dijks...
问题算法源代码:骑士遍历、万年历、N皇后问题回溯算法、动态计算网络最长最短路线、货郎担分枝限界图形演示、货郎担限界算法、矩阵乘法动态规划、网络最短路径Dijkstra算法-problems algorithm source code : Knight traversal, calendar, N Queens backtracking algorithms, Dynamic computing network longest shortest routes, traveling salesman Branch and Bound graphic demonstration, traveling salesman Bound algorithm, Matrix multiplication dynamic programming, network Dijkstra shortest path algorithm
- 2022-01-25 17:06:40下载
- 积分:1
-
用于运算加减乘除的四则运算代码. 用一个复数结构ComplexNumber来存放一个复数;...
用于运算加减乘除的四则运算代码. 用一个复数结构ComplexNumber来存放一个复数;-arithmetic operations for the four Operational code. Using a complex structure ComplexNumber to store a plural;
- 2022-07-15 02:00:26下载
- 积分:1
-
mage128 8种LED点亮模式
/*******************************************************************************
Platform : ATmega128 mini开发板(http://bbs.armavr.com)
Project : 实验一:8种LED点亮模式
Clock F : 7.3728M
Software : WinAVR-20100110
Author : 林夕依然
Version : 11.04.27
Updata :
comments :
1、以学习板八个LED灯为硬件电路,LED_EN短路块需装上
2、练习简单延时函数的编制
3、AVR单片机端口寄存器的使用及理解
4、练习程序模块化,结构化的书写
- 2022-11-18 02:10:03下载
- 积分:1
-
koch 雪花的非递规 实现
koch 雪花的非递规 实现-non-delivery rules to achieve
- 2022-02-24 16:40:11下载
- 积分:1