-
目标检测与跟踪
官网源码 方便大家查找学习 Efficient Online Structured Output Learning for Keypoint-Based Object Tracking 这篇论文的源码 放在这里方便大家节省一些时间
- 2022-09-13 23:55:03下载
- 积分:1
-
本程序用于有限元方法中空间8节点单元刚度矩阵的计算,并通过文本文件实现数据间的传输,在VB中通过shell函数来调用fortran的程序,实现二者的混合编程。...
本程序用于有限元方法中空间8节点单元刚度矩阵的计算,并通过文本文件实现数据间的传输,在VB中通过shell函数来调用fortran的程序,实现二者的混合编程。
-This procedure for the finite element method in space for 8-node element stiffness matrix calculation, and through text files between data transmission, in VB through shell function to call fortran procedure, the two realize mixed language programming.
- 2022-08-04 01:29:32下载
- 积分:1
-
4级词典构建哈希表
资源描述哈希表的构建,主要使用了ELFHASH进行编码。分别使用了指针哈希和开放地址哈希进行编写。用4级词汇构建,测试样例为4万个输入,可以明显分析其时间差距。大学二年级开学初的作业之一。
- 2022-02-22 11:13:11下载
- 积分:1
-
分段算法的程序,很好的。绝对简练
分段算法的程序,很好的。绝对简练-Segmentations procedures very well. Absolutely concise
- 2022-02-20 22:08:48下载
- 积分:1
-
文件转成c数组
这是一个把文件转化成c/c++语言中的数组的代码, 方便把资源文件加入程序中编译。
- 2022-04-20 02:26:54下载
- 积分:1
-
数据结构第三版
数据结构版第三版,课本习题和例题全面覆盖,减少编程的时间,可利用debug,逐步演算,增加理解
- 2023-05-08 04:35:03下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
利用自动机上加语义动作实现对所有常数的正确处理以及显示其结果。...
利用自动机上加语义动作实现对所有常数的正确处理以及显示其结果。-The use of automatic machines plus semantic actions to achieve the proper handling of all constants and display the results.
- 2022-01-28 03:16:49下载
- 积分:1
-
用差分方法求解沃尔泰拉方程,此处为一个变元的方程,由于该方程同时含有微分和积分,一般求解有一定的困难。...
用差分方法求解沃尔泰拉方程,此处为一个变元的方程,由于该方程同时含有微分和积分,一般求解有一定的困难。-use of the finite difference method for Volterra equation here as a variable element of the equation, As the same time contain differential equations and integral, the general solution is definitely difficult.
- 2022-11-10 09:55:02下载
- 积分:1
-
简单有限元程序c++
使用c++编写一个简单的三角形单元有限元程序,通过编译链接,已经可以,初学有限元程序着可以看看
- 2022-09-14 03:15:03下载
- 积分:1