-
openGI (几何图像)
OpenGI 是一个独立于平台的 C 库的三角网格模型参数化和创建从这种参数化的几何图像。 功能简单易学 OpenGL 类似语法和编程 2-流形上的任意亏格与可变数量 boundariesvarious 参数化算法,如平均值 paradigmsworks 拉伸最小化,为多图表 patchi ficationshardware 的原始 GIM algorithmsupport 加速几何图像 creationsampling 各种通用 attributestight 集成使用 OpenGL 的轻松和高效的数据共享
- 2022-04-17 10:49:59下载
- 积分:1
-
C++经典数值算法源码
包括多个经典的数值算法
C++经典数值算法源码
包括多个经典的数值算法-C++ Classical numerical algorithm source code, including a number of classical numerical algorithm
- 2022-03-09 14:59:29下载
- 积分: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
-
Delaunay三角剖分
根据离散点,生成三角网,实现了三角剖分,可用于泰森多边形的构建及面状图形骨架线的提取
- 2022-01-25 23:01:14下载
- 积分:1
-
指纹识别系统 C 语言源码
指纹识别系统 c 语言源码 !强烈推荐 !
- 2022-02-20 21:52:08下载
- 积分:1
-
这个想法是从“模糊效果:感知和估计与新的不
The idea is from "The Blur Effect: Perception and Estimation with a New No-Reference Perceptual Blur Metric"
Crété-Roffet F., Dolmiere T., Ladret P., Nicolas M. - GRENOBLE - 2007
In SPIE proceedings - SPIE Electronic Imaging Symposium Conf Human Vision and Electronic Imaging, É tats-Unis d Amérique (2007)-Measure the blur level of still image.
- 2022-03-13 23:14:02下载
- 积分:1
-
numerical integration : Key words : numerical integration approximate interpolat...
数值积分:关键词:数值积分 近似 插值求积 梯形 辛普生 复化 逐次分半 龙贝格-numerical integration : Key words : numerical integration approximate interpolation Quadrature trapezoidal Simpson Health Minute of successive half Romberg
- 2022-03-25 08:35:29下载
- 积分:1
-
2阶巴特沃斯滤波器
实用的fortran版2阶巴特沃斯滤波器。
在李建平程序基础上有细微调整。
- 2022-03-09 12:24:15下载
- 积分:1
-
Conti. 通过优化GA(遗传算法)写的JC层裂,1999年8月
随机搜索和优化的介绍写在支持文本,2003运行此程序的GA。亲自选择的轮盘的方法是用在这里。包括。家长选择从人口包括精英染色体。这里使用的是标准的位形。像往常一样,代码中的适应度值的作品(更高更好);结果,然而,报告的实际利益的损失值。此代码不在θ值以外的thetamax和thetamin直接相关约束的工作。J. C.剥落,八月1999 G
- 2023-04-25 15:00:04下载
- 积分:1
-
在VC++环境用牛顿法去求解方程,从而得到方程的根
在VC++环境用牛顿法去求解方程,从而得到方程的根-search boots
- 2022-03-12 12:44:01下载
- 积分:1