上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页

2018年4月28日

C#预处理器指令

摘要: C#预处理器指令是在编译时调用的。 预处理器指令(preprocessor directive)告诉C#编译器要编译哪些代码,并指出如何处理特定的错误和警告。 C#预处理器指令还可以告诉C#编辑器有关代码组织的信息。 1. 定义符号和取消符号定义的预处理指令#define 和 #undef 预处理指令都以#号开头并位于行首,前面可以出现空格符。 #define DEBUG #defin... 阅读全文

posted @ 2018-04-28 11:26 strangeman 阅读(163) 评论(0) 推荐(0) 编辑

2018年4月27日

C# 实现透明可移动窗体

摘要: 1、设置窗体属性 this.BackColor this.TransparencyKey = this.BackColor; 2、窗体加载图片 this.BackgroundImage = global::TransParentForm.Properties.Resources.FormBackGr 阅读全文

posted @ 2018-04-27 10:36 strangeman 阅读(491) 评论(0) 推荐(0) 编辑

2018年1月30日

多元一次方程解法 C++

摘要: #include #include #include #include using namespace std; #define MaxElement 4 void print(double (*pArray)[MaxElement + 1], int iWidth,int iHigh); void main(){ int n,m; double a[MaxE... 阅读全文

posted @ 2018-01-30 15:26 strangeman 阅读(3005) 评论(0) 推荐(0) 编辑

C#并行编程-Task

摘要: https://www.cnblogs.com/caoyc/p/6382528.html 菜鸟学习并行编程,参考《C#并行编程高级教程.PDF》,如有错误,欢迎指正。 目录 C#并行编程-相关概念 C#并行编程-Parallel C#并行编程-Task C#并行编程-并发集合 C#并行编程-线程同步原语 C#并行编程-PLINQ:声明式数据并行 任务简介 TPL引入新... 阅读全文

posted @ 2018-01-30 10:24 strangeman 阅读(174) 评论(0) 推荐(0) 编辑

相机畸变校正资料

摘要: https://wenku.baidu.com/view/b278935d777f5acfa1c7aa00b52acfc789eb9fd3.html https://wenku.baidu.com/view/4dc3870aaa00b52acfc7cadc.html http://blog.csdn.net/piaoxuezhong/article/details/75268535 ht... 阅读全文

posted @ 2018-01-30 09:53 strangeman 阅读(359) 评论(0) 推荐(0) 编辑

Opencv 编译

摘要: 转载 https://www.cnblogs.com/xinxue/p/5766756.html 阅读全文

posted @ 2018-01-30 09:52 strangeman 阅读(201) 评论(0) 推荐(0) 编辑

2018年1月25日

在平面中,一个点绕任意点旋转θ度后的点的坐标

摘要: 假设对图片上任意点(x,y),绕一个坐标点(rx0,ry0)逆时针旋转a角度后的新的坐标设为(x0, y0),有公式: x0= (x - rx0)*cos(a) - (y - ry0)*sin(a) + rx0 ; y0= (x - rx0)*sin(a) + (y - ry0)*cos(a) + 阅读全文

posted @ 2018-01-25 22:03 strangeman 阅读(7733) 评论(0) 推荐(0) 编辑

2017年12月5日

VC6之MAP文件生成及格式

摘要: 文件生成方式: 在 VC 中,我们可以按下 Alt+F7 ,打开“Project Settings”选项页,选择 C/C++ 选项卡,并在最下面的 Project Options 里面输入:/Zd ,然后要选择 Link 选项卡,在最下面的 Project Options 里面输入: /mapinf 阅读全文

posted @ 2017-12-05 22:47 strangeman 阅读(290) 评论(0) 推荐(0) 编辑

2017年9月30日

十三种基于直方图的图像全局二值化算法

摘要: http://www.cnblogs.com/Imageshop/p/3307308.html 阅读全文

posted @ 2017-09-30 16:50 strangeman 阅读(146) 评论(0) 推荐(0) 编辑

浮点数大于0

摘要: 请看这里面的定义 C:\Program Files\Microsoft Visual Studio 8\VC\crt\src\float.h float,double分别遵循R32-24,R64-53的标准,他们的位数分别是23,52;即误差在2^-23,2^-52;所以float的精度误差在1e-6;double精度误差在1e-15 所以要判断一个单精度浮点数:则是if( abs(f) <=... 阅读全文

posted @ 2017-09-30 16:31 strangeman 阅读(717) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页

导航