-
ResizeImageMatrix
This program implements various interpolation techniques to resize 2D matrices or Image Matrices.
Methods of interpolation used are
1) Nearest Neighbour
2) Bilinear
3) Bicubic 2x2
4) Bicubic 4x4
5) Bicubic 6x6
6) Bicubic 8x8
- 2022-01-25 16:59:14下载
- 积分:1
-
为规范和解决poj 1699
poj 1699的代码和方法说明,个人原创
-the codes and solution for poj 1699
- 2022-06-15 09:10:35下载
- 积分:1
-
快速福利叶变换C程序包
此程序包是通用的快速傅里叶变换C语言函数,移植性强,以下部分不依赖硬件。此程序包采用联合体的形式表示一个复数,
输入为自然顺序的复数(输入实数是可令复数虚部为0),输出为经过FFT变换的自然顺序的复数.此程序包可在初始化时
调用create_sin_tab()函数创建正弦函数表,以后的可采用查表法计算耗时较多的sin和cos运算,加快可计算速度.与Ver1.1版
相比较,Ver1.2版在创建正弦表时只建立了1/4个正弦波的采样值,相比之下节省了FFT_N/4个存储空间。
- 2022-03-02 18:12:30下载
- 积分:1
-
Numerical algorithm for Complex numbers
Numerical algorithm for Complex numbers -Numerical algorithm for Complex numbers
- 2022-01-26 00:35:58下载
- 积分:1
-
C语言编的汉诺塔计算
C语言编的汉诺塔计算-series of the C language HANOR calculation
- 2022-05-23 22:25:06下载
- 积分:1
-
SVM 图像识别
利用SVM分类器对图像进行分类,运行环境为opencv,并且代码包内含有关于libSVM的相关文献
- 2023-07-28 00:50:04下载
- 积分:1
-
所有的函数与单链表
这是在 c + + 中为单链表操作的源代码,表明在此程序中的操作技巧将节点添加到链接列表,从链接列表中删除一个节点和它是如何影响的堆栈指针,计算的当前链接列表中的节点数。这个程序演示了上述函数单个链接列表中的所有。
- 2022-02-25 11:08:58下载
- 积分:1
-
good SVM algorithm, using the LS
不错的SVM实现算法,采用的是LS-SVM算法,这是MATLAB版本,还有一个C版本-good SVM algorithm, using the LS-SVM, which is MATLAB version, a C version
- 2023-08-05 06:25:03下载
- 积分:1
-
GAC模型,迎风方案
im=imread("e:301clip301.tif");
im=rgb2gray(im);
im=double(im);
im = imresize( im, 0.5 ); % 为了减少程序运行时间,将图像变小为原来大小的1/2
figure(1);imshow(uint8(im));
[nrow,ncol]=size(im);
J= gauss( im,3,2 ); % 为了计算函数g,先对图像作guassian预平滑
%%- 计算图像梯度模值
J_x = (J(:,[2:ncol ncol])-J(:,[1 1:ncol-1]))/2;
J_y = (J([2:nrow nrow],:)-J([1 1:nrow-1],:))/2;
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-14 21:25:24下载
- 积分:1
-
对数回归方程logarithmregress.cs方程模型y = * LN…
对数回归方程 LogarithmRegress.cs
方程模型为 Y=a*LnX+b
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数),系数越接近1,数据越满足该模型。
-Logarithmic regression equation LogarithmRegress.cs equation model for Y = a* LnX+ Bpublic override double [] buildFormula () get coefficient array, the storage order and model coefficients contrary, that is, the array is followed by the value of coefficient b, a. public override double forecast (double x) prediction function, according to the results of model prediction. public override double computeR2 () calculated the correlation coefficient (determination coefficient), coefficient of the closer one, the data satisfy the model more.
- 2022-08-31 23:15:03下载
- 积分:1