-
waterMd5
实现了数字水印和MD5值序列的嵌入以及提取,有很好的鲁棒性(MD5 realized the value of digital watermarking and embedding and extraction sequence, there is robust)
- 2011-05-08 15:49:58下载
- 积分:1
-
CodeSmithBoat
CodeSmith三层构架开发通用模板,自动生成基础代码,很实用~(CodeSmith three-tier architecture to develop a common template, very useful ~)
- 2013-07-24 17:24:05下载
- 积分:1
-
the11thchapter
基于opencv的计算机视觉技术实现光盘,第11章(Based on the opencv computer vision technology to achieve discs, Chapter IX)
- 2013-05-23 11:10:15下载
- 积分:1
-
msp430例程源码
包含430单片机各个功能的例程代码,例如定时器相关例程,uart相关例程,事件触发相关例程等
- 2022-03-02 01:46:44下载
- 积分:1
-
C# wpf 创建简单形状动画的例子
C# wpf 创建简单形状动画的例子,启动动画、停止动画、暂停动画、继续动画、加速动画。创建动画
Rectangle MyRectangle = new Rectangle();
MyRectangle.Width = 50;
MyRectangle.Height = 20;
MyRectangle.Margin = new Thickness(10, 50, 0, 0);
MyRectangle.Fill = new LinearGradientBrush(
Color.FromArgb(255, 0, 255, 255), Color.FromArgb(255, 0, 0, 255), 0);
MyRectangle.HorizontalAlignment = HorizontalAlignment.Left;
this.canvas1.Children.Add(MyRectangle);
this.RegisterName("MyRectangle", MyRectangle);
DoubleAnimation MyAnimation =
new DoubleAnimation(100, 380, new Duration(TimeSpan.FromSeconds(5)));
Storyboard.SetTargetName(MyAnimation, "MyRectangle");
Storyboard.SetTargetProperty(MyAnimation,
new PropertyPath(Rectangle.WidthProperty));
MyStoryboard = new Storyboard();
MyStoryboard.Children.Add(MyAnimation);
动画效果请参见下图所示,源代码请单击下载按钮下载。
- 2022-08-25 13:04:57下载
- 积分:1
-
DemoTest
将射频卡放在天线有效范围内,指定读/写地址,点击<读卡>,系统对该卡进行连续的读/写操作,直至用户点取<断开连接>按钮为止。同时将每个操作步骤调用的函数、操作结果及读出/写入的数据显示在列表框中。(The radio frequency card is placed in the effective range of the antenna, the read / write address is specified, the read card is clicked, and the system can read / write the card continuously until the user points out the disconnect connection. At the same time, the function, operation result and read / write data of each operation step are displayed in the list box.)
- 2018-05-04 13:36:49下载
- 积分:1
-
Hooker
Hooker
you can Create Hooker.dll
this file is used Keylogging & injection
- 2011-08-22 11:49:40下载
- 积分:1
-
四旋翼飞行器的飞控程序
四旋翼飞行器的飞控程序,基于
#include "include.h"
float tem;
int main(void)
{
delay_init(SYSCLK_FREQ_72);
uart_init(72,115200);
AFIO_Init();
GPIO_Init(GPIOB,Pin_5,GPO_PP_50,LOW);
GPIO_Init(GPIOC,Pin_13,GPO_PP_50,LOW);
Ultra_Init(); //超声波初始化
TIM_PPM_Init(); //遥控器采集初始化
TIM_PWM_Init(CH1,400,4000); //电机控制初始化
TIM_PWM_Init(CH2,400,4000);
TIM_PWM_Init(CH3,400,4000);
TIM_PWM_Init(CH4,400,4000);
ANBT_I2C_Configuration(); //IIC初始化
delay_ms(500);
AnBT_DMP_MPU6050_Init(); //6050DMP初始化
delay_ms(500);
InitHMC5883(); //HMC5883初始化
delay_ms(500);
updateHMC5883();
tem=MAG_angle;
delay_ms(500);
Wake_up_Lock();
FTM_Init(2);
while(1)
{
UnLock_Lock();
}
}
stm32,利用mpu6050内部自带的DMP融合姿态角,采用串级PID算法来完成平衡控制。有很大的参考价值。
- 2022-07-17 11:37:24下载
- 积分:1
-
C#模拟LED灯可设置开关
C# winfor编写的可以实现模拟LED灯效果的控件,控件采用GDI绘制,控件中封装了可以设置开关的属性,用户可以在属性中设置开关的状态,通过BackColor来改变控件的颜色,关闭状态下的颜色根据当前所选择的颜色进行设置,通过Darkolor属性来实现关闭的效果,详细详细源码中都有展示。
- 2022-05-26 06:42:28下载
- 积分:1
-
MinimumCostFlow
说明: 最小费用最大流问题 MATLAB编程代码(Maximum flow problem minimum cost MATLAB programming code)
- 2009-08-13 18:20:01下载
- 积分:1