-
keboard
可以实现模拟键盘,驱动级的。可以当普通键盘一样使用(Can realize analog keyboard, driver class. Like an ordinary keyboard can be used)
- 2020-10-13 23:17:31下载
- 积分:1
-
TFromthedistah
这是一个模拟路由器的距离矢量路由算法, Dijjkstra算法是核心。(This is a simulated router distance vector routing algorithm Dijjkstra algorithm is the core.)
- 2012-08-20 07:19:32下载
- 积分:1
-
REmodel
一个计算低RE数的两方程湍流模型,对学习UDF的同学帮助较大(A calculation of the number of low-RE turbulence model for the students to learn more helpful UDF)
- 2021-01-02 15:38:57下载
- 积分:1
-
这是一个用GDI+实现的图象放大程序.可以对图象的局部进行放大....
这是一个用GDI+实现的图象放大程序.可以对图象的局部进行放大.-This is a GDI achieved with the image amplification procedures. Images can be enlarged for the local.
- 2022-01-27 13:05:26下载
- 积分:1
-
基于八叉树分解的三维重建
基于八叉树分解的三维重建,原始数据需要有法向量.
- 2019-06-26下载
- 积分:1
-
SurfBox
A set of C++ and Matlab routines implementing the surfacelet transform
- 2008-08-08 15:16:38下载
- 积分:1
-
高斯消去法
In 线性代数, 高斯消去法(也称为行减少) 是算法求解线性方程组.它通常被理解为对关联的执行操作的序列系数矩阵 。此方法还可以用于查找 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-26 04:58:48下载
- 积分:1
-
STM32L152_USB_HID
STM32L USB数据传输,稳定实现了与PC端的数据传输
- 2021-03-16 21:59:21下载
- 积分:1
-
数字图像处理增加亮点和对比度
#include#includeusing namespace cv;int main() {Mat src,dst;src = imread("D:/ps/circle.png");int rows = src.rows;int cols = src.cols;float alpht = 1.8;float bea = 50;dst = Mat::zeros(src.size(), src.type());for (int row = 0; row < rows; row++) {for (int col = 0; col < cols; col++) {int b = src.at(row, col)[0];int g = src.at(row, col)[1];int r = src.at(row, col)[2];dst.at(row, col)[0] = saturate_cast(alpht*b + bea);dst.at(row, col)[1] = saturate_cast(alpht*g + bea);dst.at(row, col)[2] = saturate_cast(alpht*r + bea);}}namedWindow("s", CV_WINDOW_AUTOSIZE);namedWindow("d", CV_WINDOW_AUTOSIZE);imshow("s", src);imshow("d", dst);waitKey(0);r
- 2022-05-14 06:46:25下载
- 积分:1
-
C# 验证码自动生成 点击更换 可用于登录
C#自动生成登录程序需要使用到的验证码功能,支持点击更换验证码。所用到的组件有:AxInterop.SHDocVw.dll、Interop.SHDocVw.dll、Microsoft.mshtml.dll,在进行验证码生成的扫描方面,从左向右一列一列扫描,寻找四个数字的左右边界以切割,进行左右边界初始化,加载10个标准数字,分割出来的4个数字分别与等宽的标准数字相匹配。
- 2022-10-11 11:50:03下载
- 积分:1