1.dead beat 是俚语,是exhausted to the point of being dead 的省略语。Beat是beaten(精疲力尽或精神沮丧)的古体词;而dead是死的,它是death(死亡)苏格兰方言。因此,dead beat就是指“精疲力尽的人”,还可以说为“赖账的人”或“手...
分类:
其他好文 时间:
2014-08-13 12:37:26
阅读次数:
217
1 /// 2 /// 获取图片流 3 /// 4 /// 图片屏幕起始点 5 /// 图片大小 6 /// 7 public string CutImage(Point ImageXY, Siz...
概述: 操作系统版本:CentOS release 6.3 (Final) 64位 nagios版本:Nagios Core 4.0.6 pnp4nagios版本:pnp4nagios-0.6.22 mk-livestatus版本:mk-livestatus-1.2.5i5p2 check...
分类:
移动开发 时间:
2014-08-13 12:35:46
阅读次数:
1808
Right-click on the module, select "Add framework support...", and check the "Maven" technology. (This also creates a?pom.xml?for you to modify.) If you mean adding source repository elements, I ...
分类:
其他好文 时间:
2014-08-13 10:44:45
阅读次数:
1136
/**
* 功能:联合体使用
* 时间:2014年8月1日17:04:23
* 作者:cutter_point
*/
#include
#include
using namespace std;
union Packed
{
char i;
short j;
int k;
long l;
float f;
double d; //这个联合体...
分类:
编程语言 时间:
2014-08-13 10:39:05
阅读次数:
262
/**
* 功能:吧变量和表达式转换成字符串
* 时间:2014年8月13日08:57:32
* 作者:cutter_point
*/
#include
#include
using namespace std;
//定义一个宏,使用便捷输出,用#来吧变量字符串化
#define P(A) cout<<#A<<" : "<<A<<endl;
int main()
{
int a=1...
分类:
编程语言 时间:
2014-08-13 10:38:45
阅读次数:
193
/**
* 功能:命令行参数
* 时间:2014年8月13日08:56:24
* 作者:cutter_point
*/
#include
#include
using namespace std;
int main(int argc, char* argv[]) //字符指针
{
cout<<"argc="<<argc<<endl;
for(int i=0 ; i !...
分类:
编程语言 时间:
2014-08-13 10:38:35
阅读次数:
245
/**
* 功能:宏处理定义
* 时间:2014年8月1日09:07:33
* 作者:cutter_point
*/
#include
#include
using namespace std;
#define PRINT(STR, VAR) cout<<STR "=" <<VAR<<endl; //这里宏定义之后,所有PRINT("STR", VAR)
//都会被cout之后的东西所覆盖...
分类:
编程语言 时间:
2014-08-12 22:15:24
阅读次数:
208
头文件
/**
* 功能:输出移位运算符的操作
* 时间:2014年8月12日20:01:32
* 作者:cutter_point
*/
#ifndef PRINTBINARY_H_INCLUDED
#define PRINTBINARY_H_INCLUDED
#include
using namespace std;
void printBinary(const unsigned cha...
分类:
编程语言 时间:
2014-08-12 22:15:04
阅读次数:
271
opencv对图像进行边缘及角点检测
先看结果:
代码:
// ConsoleApplication1_812.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "opencv2/opencv.hpp"
class Imagedetector{
...
分类:
其他好文 时间:
2014-08-12 22:05:44
阅读次数:
298