-
AD-conversion-filter-averaging
飞思卡尔单片机实现的程序,AD滤波采样求平均是本科教学的好工具,也是考试的参考资料,十分之宝贵,废话不说,自己下载,你懂得。每个程序都能运行,而且用好几种方法实现。(Freescale MCU program, is a good tool for undergraduate teaching, but also the examination of references, very valuable, do not talk nonsense, to download, you know. Each program can be run, and by several methods.)
- 2014-04-08 10:31:42下载
- 积分:1
-
pushboard
说明: 用于三维条件下的推板造波法udf,冲程与周期可修改,附带消波udf和cas文件(generating waves with pushboard under 3D condition)
- 2020-12-26 16:49:03下载
- 积分:1
-
Loning RssReader with c#
Loning RssReader with c#
- 2022-10-12 12:20:04下载
- 积分:1
-
实现了基本的通讯(增删改查)
实现了用户的基本信息(性别,年龄,号码,住址),实现了增删改查的作用,思路清晰。
- 2022-02-10 11:01:54下载
- 积分:1
-
C# WPF 图片旋转、放大、扭曲、平移、不透明蒙版等
这是一个C#图像处理程序,把一张图片平移、顺时针角度旋转、按一定角度扭曲、使用不透明蒙版等功能,以下是实现具体功能的代码,把这些处理功能封装到按钮事件中:
private void button2_Click(object sender, RoutedEventArgs e)
{//缩放图像
if (this.button2.Content=="放大图像")
{
ScaleTransform MyScaleTransform = new ScaleTransform();
MyScaleTransform.CenterX = this.image1.Width / 2;
MyScaleTransform.CenterY = this.image1.Height / 2;
MyScaleTransform.ScaleX = 1.5;
MyScaleTransform.ScaleY = 1.5;
this.image1.RenderTransform = MyScaleTransform;
this.button2.Content = "缩小图像";
}else{
ScaleTransform MyScaleTransform = new ScaleTransform();
MyScaleTransform.CenterX = this.image1.Width / 2;
MyScaleTransform.CenterY = this.image1.Height / 2;
MyScaleTransform.ScaleX = 0.5;
MyScaleTransform.ScaleY = 0.5;
this.image1.RenderTransform = MyScaleTransform;
this.button2.Content = "放大图像";
}
}
private void button3_Click(object send
- 2023-01-22 02:10:03下载
- 积分:1
-
decode
实现了基本的UTF-8、GBK,GB2312的编码和解码(The basic implementation of UTF-8, GBK, GB2312 encoding and decoding)
- 2013-10-28 11:52:37下载
- 积分:1
-
Rectangle
根据输入的长宽,计算Rectangle面积周长等功能,并画出在txt文件中(Rectangle
Create a class Rectangle with attributes length and width, each of which defaults to
1
a. Provide member functions that calculate the perimeter and the area of the rectangle.
b. Also provide set and get functions for the length and width attributes. The set
functions should verify that length and width are each integer numbers larger than 0
and less than 20.
c. Write draw function to display the Rectangle:
in Assignment1. )
d. Write a driver program to test class Rectangle.)
- 2012-10-24 23:54:51下载
- 积分:1
-
CANopen_stack
CAN Open Libraries for Implementation
- 2019-01-11 23:14:11下载
- 积分:1
-
wonsiutency_image_loop
完全实现快速排序又称分区交换排序法 在待排序文件中任取一个元素例如第一个元素(Complete quick sort, also known as partition interchange sorting, takes any element in the file to be sorted, for example, the first element)
- 2018-11-30 13:11:35下载
- 积分:1
-
opengl显示点云网格模型
opengl显示点云网格模型能够运行,本人已亲自运行验证,成功运行。
- 2022-01-30 21:13:57下载
- 积分:1