-
test
说明: 一个万能的Makefile 文件,无需关心什么文件,什么目录结构,只需要在相关的目录下添加子目录(.c .h文件) ,编译即可。(目录采用递归查找方式,多级子目录均适用!)附上相关的Dome 使用例程。(A versatile Makefile, no need to care about what files, what directory structure, just add subdirectories (.c.h files) in the relevant directory, compile. (The directory uses recursive lookup mode, multi-level subdirectories are applicable!) Attach the relevant Dome usage routines.)
- 2020-06-19 22:00:01下载
- 积分:1
-
C++_with_Matlab
Why use C/C++ with Matlab?
• Matlab can be slow
• C++ can be fast
– How can we integrate C++’s speed with
Matlab’s convenience? Matlab’s convenience?
• Goal:
-Implement critical functions with (fast)
C++ code, and use (slow) Matlab code
for data structure management (which
can be difficult/annoying in C++)
- 2010-12-17 19:00:24下载
- 积分:1
-
T医疗影像数据仓库系统
说明: 设备绩效管理,数据展示分析,全文检索,疾病预测(Device Management, Data Analysis and Predict)
- 2020-06-25 03:00:02下载
- 积分:1
-
QT相册设计
采用QT软件设计的数码相册,里面包含代码源程序。
- 2023-07-04 05:45:04下载
- 积分:1
-
C# WPF实现图片浮雕、凹凸的图像效果
Visual C# WPF实现图片浮雕、凹凸的图像效果,看上去很有雕刻的效果,这个功能对于熟悉PS的朋友,可能不陌生,用C#的WPF技术,可以轻松实现类似效果,只是说法不一样,在本例中,叫做“凹凸位图特效”,本代码在功能实现上,分为全部实现和局部实现,代码参考如下:
private void button1_Click(object sender, RoutedEventArgs e)
{//凹凸位图特效全部作用于图像
this.image1.BitmapEffectInput = null;
var MyEffect = new System.Windows.Media.Effects.EmbossBitmapEffect();
MyEffect.Relief = 0.8;
MyEffect.LightAngle =320;
this.image1.BitmapEffect = MyEffect;
}
private void button2_Click(object sender, RoutedEventArgs e)
{//凹凸位图特效部分作用于图像
var MyEffect = new System.Windows.Media.Effects.EmbossBitmapEffect();
MyEffect.Relief = 0.8;
MyEffect.LightAngle = 320;
this.image1.BitmapEffect = MyEffect;
var MyInput = new System.Windows.Media.Effects.BitmapEffectInput();
MyInput.AreaToApplyEffect = new Rect(.25, .25, .50, .50);
MyInput.AreaToApplyEffectUnits = System.Windows.Media.BrushMappingMode.RelativeToBoundingBox;
this.image1.BitmapEffectInput= MyInput;
}
完整
- 2022-02-20 09:13:59下载
- 积分:1
-
资料
说明: 基于51单片机的手机蓝牙遥控小车设计(程序 元件清单 实物图)(Design of mobile phone Bluetooth remote control car based on 51 single chip microcomputer (program element list physical figure))
- 2020-06-27 07:15:23下载
- 积分:1
-
ok6410关于dht11驱动代码
ok6410关于dht11驱动代码,dht11主要是高低电平获取时序判断当前状态,readbyte()读取数据字节,总共有8位温度数据位、8位湿度数据、8位和结果
- 2022-01-31 16:24:42下载
- 积分:1
-
C语言282例代码集
所有程序都可以在VS 2015上运行;
该程序尤其适合初学者,算法初学者;
部分程序来自282例,其他是原创程序。
- 2022-03-22 05:05:15下载
- 积分:1
-
tesseract-vs2012-master
最新的tesseract的vs2012平台下的源代码(The latest source code tesseract of vs2012)
- 2014-09-30 14:46:52下载
- 积分:1
-
form
能够根据pc端的屏幕分辨率自动调整窗体大小(According to pc side of the screen resolution automatically resizes the form)
- 2013-06-04 12:49:02下载
- 积分:1