-
几个c语言的程序,其中推荐快速傅丽叶变换
几个c语言的程序,其中推荐快速傅丽叶变换-Several c language program, which recommended the rapid transformation傅丽叶
- 2022-06-01 00:31:36下载
- 积分:1
-
AVL树的创建与基本操作
AVL树的创建与基本操作-AVL Tree and the creation of basic operation
- 2022-12-12 08:45:03下载
- 积分:1
-
sift图像匹配算法
资源描述很经典的图像特征匹配算法sift。里面有说明和demo,从国外网站搬过来的,大家可以试试。每行都有注释,可以自己添加源码。。。。。。
- 2022-03-22 17:23:48下载
- 积分:1
-
三个差值算法(1):二元拉格朗日插值(fortran)(2):三次样条差值(c)(3):三元三点差值(fortran)...
三个差值算法(1):二元拉格朗日插值(fortran)(2):三次样条差值(c)(3):三元三点差值(fortran)-three programs about interpolation :1:Binary Lagrange interpolation 2:three time interpln interpolation 3:Binary three point interpolation
- 2022-02-02 14:30:04下载
- 积分:1
-
数据挖掘中的聚合层次聚类算法,有完整的注释
数据挖掘中的聚合层次聚类算法,有完整的注释-Data Mining syndication hierarchical clustering algorithm, a complete Notes
- 2022-08-09 09:21:49下载
- 积分:1
-
目标检测
这是在OpenCV中演示,你可以使用HAAR/ LBP基础的分类做的人脸检测。同时,面部识别也可用于opencv的,因此,此代码可以用于预先处理。
- 2022-03-31 06:15:50下载
- 积分:1
-
矩阵乘以向量
定义一个矩阵类CM和向量类
(1)、为它们各自重载*,=,==运算符;
(2)、为CM类重载CM*CV,CM*实数
(3)为CV类重载CV*CM,CV*实数
(4)在main函数中使用以上运算符。
- 2022-01-25 14:01:49下载
- 积分:1
-
公有继承举例
公有继承的举例,派生类的声明,通过派生类对象访问基类的公有成员。
- 2022-02-16 04:06:40下载
- 积分:1
-
K-Means算法 mapreduce
public class KmeansMapper extends MapReduceBase implements
Mapper {
// one coodinate(data)
private List coordinate = new ArrayList();
private BasicKMeansTool basicKmeans = new BasicKMeansTool();
public void map(LongWritable key, Text value,
OutputCollector midoutput,
Reporter arg3) throws IOException {
// TODO Auto-generated method stub
String line = value.toString();
String[] dataList = line.split(",");
List distances = null;
StringTokenizer itr;
for (int i = 0; i < dataList.length; i++) {
itr = new StringTokenizer(dataList[i]);
&nbs
- 2023-02-01 17:45:04下载
- 积分:1
-
基于图像的数字插入算法
资源描述
资源描述
1、本代码写在word文档中,由于保密性等各种原因,需要修改下,需要认真的看
2、本文档的作用是王bmp文件中输入0-9任意组合的数字
3、算法的主要步骤:
1)数字的大小归一化为5*5的大小,然后每个数字都是二值化图像,最后放到一个数组里面,详细请看word文档里的代码
2)然后根据数字插入的位置,将数字插入道图像中
- 2022-01-25 22:22:18下载
- 积分:1