-
3D-FDTD垂直双阵子程序,可以调整阵子半径。以达到设计一定方向图的目的。-3D-FDTD vertical-stream procedures can be adjusted stream radius. Designed to achieve certain objectives in the direction of the map.
- 2022-01-20 22:54:18下载
- 积分:1
-
LBP算法的实现
// LBP.cpp : 定义控制台应用程序的入口点。
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-11 04:31:19下载
- 积分:1
-
Bubble, BiDirectional Bubble, Bitonic排序算法
Bubble, BiDirectional Bubble, Bitonic排序算法-Sort Algorithm of Bubble, BiDirectional Bubble, Bitonic sorting
- 2022-02-20 03:52:54下载
- 积分:1
-
RSA算法
C++ 实现
RSA算法
C++ 实现
RSA算法
C++ 实现
RSA算法
C++ 实现
-achieve RSA algorithm to achieve C
- 2022-05-13 21:24:37下载
- 积分:1
-
Insertion sort
insertion_sort.cpp
#include
#include
#include
#define N 5000
int insertion_sort( int data_insert[] );
void creat_file( char *file_name, int data_file[] );
int main(int argc, char *argv[]){
int data[N];
creat_file( argv[1], data );
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-05 04:13:51下载
- 积分:1
-
vc++ commonly used numerical algorithm set: contains: interpolation, integration...
vc++常用的数值算法集:包含:插值,积分,逼近,排序等等常用的数值算法,其中包含都包含代码-vc++ commonly used numerical algorithm set: contains: interpolation, integration, approximation, and so commonly used to sort numerical algorithm, which includes both contain code
- 2022-03-25 03:27:17下载
- 积分:1
-
鲍威尔发 好用 正确
是我自己编写的 可以定义了fx 可以通过更改 fx函数 达到通用性很好的效果 自己亲自试验 没有错误 程序没有更改过 直接上传 程序是求解给定区间的最小值的优化 需要输入三个数 是 按照优化设计那本书上的框图编写的
- 2022-03-14 14:47:45下载
- 积分:1
-
雅可比算法的算例程序,用简单明了的计算过程展示了雅可比算法的C设计过程。...
雅可比算法的算例程序,用简单明了的计算过程展示了雅可比算法的C设计过程。-Jacobi algorithm example program, with a simple and straightforward calculation shows C Jacobi algorithm design process.
- 2022-03-31 09:17:14下载
- 积分:1
-
手势识别
应用背景通过调用摄像头,可以实时的检测视频中手势,并判断手势的相应信息。给出不同的手势形状作为不同的手势信息,比如手掌撑开为“5”,握拳为“0”,本代码一共做出来“0”、“1”、“2”、“3”、“4“、“5”、”6“、”7“、”8“、”9“共10中类型关键技术将采集到的图像颜色空间转化,RGB->YCrCb通道,再将Y、Cr、Cb三通道颜色分离,通过肤色在不同颜色空间阈值不同,对人体肤色进行阈值分割,通过中值滤波和高斯滤波、腐蚀膨胀等手段,消除图像在噪声,再通过周积比概念,分离出手个脸的区域,设定ROI区域,通过圈出手所在区域,通过模板匹配,计算手势的相识度,进而找到当前手势的信息。
- 2022-08-14 02:37:58下载
- 积分: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