-
315/433无线射频遥控灯C51程序
利用STC单片机实现315/433无线射频遥控灯。有学习模式,采用一个按键来实现#define const_key_time_short1 1000 //短按的按键去抖动延时的时间 #define const_key_time_long1 20000 //长按的按键去抖动延时的时间 #define const_key_time_long2 40000 //长按的按键去抖动延时的时间 #define const_key_time_long3 60000 //长按的按键去抖动延时的时间 短按键为灯开或者关按键超过2秒为开灯学习按键超过4秒为关灯学习按键超过6秒为清除已学习的按键
- 2022-02-21 11:24:14下载
- 积分:1
-
数字图像处理傅里叶变换
#include #includeusing namespace cv;using namespace std;//快速傅里叶变换void fft2Image(InputArray _src, OutputArray _dst){//得到Mat类型Mat src = _src.getMat();//获取矩阵//判断位深CV_Assert(src.type() == CV_32FC1 || src.type() == CV_64FC1);CV_Assert(src.channels() == 1 || src.channels() == 2);
- 2023-05-22 05:45:03下载
- 积分:1
-
MKE06P80M48SF0RM
freescale KE系列中文使用手册,适合新手和英语不善长者使用。(Freescale KEXX Chinese manual, suitable for beginners and poor English elders use.)
- 2016-05-16 15:19:37下载
- 积分:1
-
4
说明: C++ is considered by many to be among the most widely used and powerful
object-oriented programming language in industry today. This book is for people
who are interested in learning and exploring C++ programming in a fresh and
enjoyable environment where programs are developed to interface with real world
devices. Other people may leave learning C++ for a later time, instead choosing to
interact with various hardware devices by simply running the fully developed
programs supplied with this book.
- 2010-09-14 21:36:56下载
- 积分:1
-
158012740vrml
说明: 有约束单一尺寸矩形样排的算法研究,非常实用简单供参考(Research on the Algorithm of Single Size Rectangular Spreading)
- 2019-05-01 19:23:12下载
- 积分:1
-
test_camshift
基于opencv运用人脸定位及跟踪!自己完成的源代码(the face orientation and track)
- 2012-04-13 11:46:40下载
- 积分:1
-
MySDOpenGL
基于opengl的单文档MFC框架,与多文档和对话框不同,是编写opengl的程序的基本框架,调试成功,绝对能运行(Opengl MFC framework based on a single document, the dialog box with multiple documents and different programs are written in opengl basic framework, debugging success, absolutely can run)
- 2014-07-15 10:54:34下载
- 积分:1
-
guidedfilter
kaiming he的guided image filtering的c++代码,利用VS2010+OPENCV2.4.4实现,效果和公布的MATLAB代码相同。(C++ code for KaiMing He s guided image filtering, the result as same as matlab code which publish in the web, project is code via VS2010+OPENCV2.4.4.)
- 2013-12-15 21:38:35下载
- 积分:1
-
动态数组模板类的C++实现
动态数组模板类的C++实现#ifndef ARRAY_CLASS#define ARRAY_CLASS#include #include using namespace std;#ifndef NULLconst int NULL = 0;#endif//错误类型集合, 共三种,数组大小错误,内存分配错误和下标越界enum ErrorType {invalidArraySize, memoryAllocationError, indexOutOfRange};//错误信息char *errorMsg[] = {"Invalid array size", "Memery allocation error", "Index out of range"};//数组类模板声明templateclass Array{ public: Array(int sz = 50); Array(const Array &A); ~Array(void); Array& operator = (const Array &rhs); //重载=,使数组对象可以整体赋值 T& operator[](int n);
- 2022-01-28 05:28:35下载
- 积分:1
-
mst703_ds_v01
晨星Mstar的MST703参考手册。
MST703是一款性价比非常高的视频解码器及小尺寸TFT液晶屏驱动芯片,外围电路简单。(Mstar MST703 Reference Manual. MST703 is a very high cost of video decoders and small size TFT LCD driver chip, the external circuit is simple.)
- 2013-09-25 17:47:33下载
- 积分:1