-
C_Classical-algorithm
经典算法 虽然小,但是经常用到。尤其是有的时候面试(Classical algorithm may be small, but often used. Sometimes the interview, especially)
- 2011-05-18 11:23:09下载
- 积分:1
-
qopentld-beta_1.0.0-win32-20150120
TLD算法的QT版本,没有matlab的相关代码,完全用C/C++实现,可以移植到嵌入式平台或者其他平台(TLD algorithm for the QT version, no matlab related code, complete with C/C++ implementation can be transplanted to the embedded platform or other platforms)
- 2015-01-20 14:34:08下载
- 积分:1
-
c语言源程序控制台鼠标操作
c语言源程序控制台鼠标操作能够在控制台界面中通过鼠标操作执行程序
- 2022-09-29 17:20:02下载
- 积分:1
-
LWIP+GTM900+LPC2104
LWIP + UCOSII示例代码,arm9开发平台(LWIP+ UCOSII sample code, arm9 development platform)
- 2009-01-29 16:21:00下载
- 积分:1
-
DV-hop
dv-hop算法的matlab仿真编码
(dv-hop algorithm matlab simulation code)
- 2012-05-19 09:43:02下载
- 积分:1
-
log
me gusta la programacion al extremo
- 2009-11-10 22:49:19下载
- 积分:1
-
adc
基于DSP28335的产生ADc采样的程序(Program for generating ADC sampling based on DSP28335)
- 2018-11-30 14:45:33下载
- 积分:1
-
wpf滑动效果 实例源码
鼠标拖动时 控件滑动 截图: 核心代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using System.Windows.Media.Animation;namespace FlashPrac2{ /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } /// /// 完成缓冲效果 /// /// 起始位置 /// 目标位置 /// 加速加速度 /// 减速加速度 /// 持续时间 private void DoMove(DependencyProperty dp, double to, double ar, double dr, double duration) { DoubleAnimation doubleAnimation = new DoubleAnimation();//创建双精度动画对象 doubleAnimation.To = to;//设置动画的结束值 doubleAnimation.Duration = TimeSpan.FromSeconds(duration);//设置动画时间线长度 doubleAnimation.AccelerationRatio = ar;//动画加速 doubleAnimation.DecelerationRatio = dr;//动画减速 doubleAnimation.FillBehavior = FillBehavior.HoldEnd;//设置动画完成后执行的操作 grdTransfer.BeginAnimation(dp, doubleAnimation);//设置动画应用的属性并启动动画 } private double pressedX; /// /// 点击鼠标,记录鼠标单击的位置 /// /// /// private void grdTest_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { ////获得鼠标点击的X坐标 pressedX = e.GetPosition(cvsGround).X; } ////鼠标释放时的操作 private void grdTest_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e) { double transferLeft = Convert.ToDouble(grdTransfer.GetValue(Canvas.LeftProperty)); //btn1.Content = transferLeft.ToString(); if (transferLeft > 0) { transferLeft = 0; } if (this.Width - transferLeft > cvsGround.Width) { transferLeft = this.Width - cvsGround.Width; } ////获得鼠标释放时的位置 double releasedX = e.GetPosition(cvsGround).X; ////获得距离间隔 double interval = releasedX - pressedX; pressedX = 0; ////计算出传送带要的目标位置 double to = transferLeft interval; ////移动 //btn1.Content = transferLeft.ToString() " " to.ToString(); // btn1.Content = transferLeft.ToString() " " to.ToString(); DoMove(Canvas.LeftProperty, to, 0.1, 0.5, 0.5); } }}
- 2014-06-24下载
- 积分:1
-
TCP
实现在TCP方式下客户端和服务器端的数据传输过程(To achieve the data transfer process in the client and server side TCP mode)
- 2012-06-01 14:50:49下载
- 积分:1
-
5477375
带背景工具栏的文本编辑器,VC++经典编程源码,很好的参考资料。(With the background of the toolbar text editor, VC++ classic programming source code, a good reference.)
- 2013-11-14 18:51:07下载
- 积分:1