-
SURF算法
应用背景 It approximates or even outperforms previously proposed schemes with respect to repeatability, distinctiveness, and robustness, yet can be computed and compared much faster.关键技术This is achieved by relying on integral images for image convolutions; by
building on the strengths of the leading existing detectors and descriptors
(in casu, using a Hessian matrix-based measure for the detector, and a
distribution-based descriptor); and by simplifying these methods to the
essential.
- 2023-07-28 12:25:06下载
- 积分:1
-
stc89c51芯片加pcf8591测电池电压在lcd1602上显示
采用c语言,用keil编写,用stc89c51芯片,在加上pcf8591adc芯片,非常实用,通讯方式采用iic通讯,可测0~10v电压,用lcd1602显示,希望能过,第一次上传代码
- 2022-02-03 10:41:39下载
- 积分:1
-
contour detection by ant colony optimization
这是一个利用蚁群算法进行图像边缘检测的程序,基于论文“图像边缘检测的蚁群优化算法”,IEEE进化计算大会(CEC),第751-756页,香港,2008年6月。输入:
- 2022-06-16 07:46:26下载
- 积分:1
-
地震波有限差分正演
用于地球物理勘探的地震波有限差分正演,可以用于全波形反演的基础程序。
- 2022-01-25 18:26:31下载
- 积分:1
-
vs.lib是一组线性代数与可积/迪在C++数学库…
vs.lib is a math library in C++ with a set of linear algebra and integrable / differentiable objects. vs.lib is a rapid-proto-typing tool which makes programming in numerical applications as easy as writing mathematical expressions.-vs.lib is a math library in C++ with a set of linear algebra and integrable/differentiable objects. vs.lib is a rapid-proto-typing tool which makes programming in numerical applications as easy as writing mathematical expressions.
- 2022-02-24 19:39:22下载
- 积分:1
-
AFD min的Java类
应用背景//////////////////////////////////// /完整的DFA/ / 2004-04-20////////////////////////////////// * *这个类实现了确定性的完整的有限自动机。的关键技术/ * *这个类实现了整数集的分区& lt;代码& gt;0,……,大小& lt;/代码& gt;。数组;
- 2023-06-26 10:55:03下载
- 积分:1
-
函数最小的遗传算法
经典算法应用: 遗传算法求函数最小的例子-Genetic algorithm for the smallest example of function
- 2023-06-28 14:50:03下载
- 积分:1
-
1_algorithm例版
一些众所周知的算法实现在这里。一个程序(调用)由一个程序的名字(带或不带限定词),其次是参数列表(如果需要)。函数返回一个值,程序必须不!大部分功能程序需要特定类型的参数。我们已经知道一个类型只是一种名称数据和参数必须有一个语言或自定义的类型。要让计算机做什么,你必须写一个计算机程序。写一个计算机程序,你必须告诉计算机,一步一步的,正是你想做的事。然后计算机“执行”的程序,每一步后的机械,实现最终目标。
- 2022-08-25 19:21:43下载
- 积分:1
-
黄金分割法,二分法,Fibonacci法求多项式函数最值
黄金分割法,二分法,Fibonacci法求多项式函数最值-Golden Section, dichotomy, the Fibonacci method for the value of a polynomial function
- 2023-02-03 13:00:04下载
- 积分:1
-
2维数组 截断 追加 测试
应用背景
二维数组的截断和追加并不像TStringList那么简单。在研究二维数组的截断和追加时,写了本例子来研究。提供给有相同问题的后来人参考,代码有点青涩,毕竟是研究算法的的demo,不喜勿喷!
关键技术
二维数组的截断和追加是一个抽象的概念,本demo把它实例化,可以给爱偷懒的程序学习者参考,不足之处欢迎拍砖。{删除动态数组指定元素的过程: 参数 arr 是数组名, 参数 Index 是要删除的索引}
procedure TForm1.DeleteArrItem(Index:Integer);
var
j:integer;
begin
if Length(MyProArr)>1 then
begin
for j := Index to Length(MyProArr)-2 do begin
MyProArr[j,0]:=MyProArr[j+1,0];
MyProArr[j,1]:=MyProArr[j+1,1];
end;
setlength(MyProArr,Length(MyProArr)-1,2);
end else
begin
setlength(MyProArr,0,2);
end;
- 2022-11-15 14:10:02下载
- 积分:1