使用查找表LUT #include #include #include using namespace std;using namespace cv;int main(int argc, char **argv){ double t = (double)getTickCount(); const c...
分类:
其他好文 时间:
2014-11-19 17:37:21
阅读次数:
164
//归档:
就是把数据按照定义的格式存储到文件中,方便从文件恢复对象数据
//解归档:
从归档文件中读取数据到对象变量中
#import
int main(int argc,
const char * argv[])
{
@autoreleasepool {
//归档
/*NSData *data =...
分类:
Web程序 时间:
2014-11-19 11:02:52
阅读次数:
218
直接贴代码吧,用g++可以编译,测试ok
#include
#include
using namespace std;
int main(int argc, char **argv)
{
bool a = true;
ostringstream os1;
os1 << a;
cout << string(os1.str()) << endl;
...
分类:
编程语言 时间:
2014-11-17 21:18:56
阅读次数:
317
# -*- coding:utf-8 -*-
import re,urllib,sys,os,time
def getAllUrl():
entry=sys.argv[1]
#try:
getPage=urllib.urlopen(entry).read()
#except:
# print "Error"
pattern=re.compile(r'')
web_site_p...
分类:
编程语言 时间:
2014-11-17 17:55:13
阅读次数:
304
#include
#include
#include
#include
#include
int main(int argc, char *argv[])
{
struct stat sb;
struct tm *ptr;
if (argc != 2)
{
fprintf(stderr, "Usage: %s \n", argv[...
分类:
系统相关 时间:
2014-11-17 17:50:19
阅读次数:
217
#!/usr/bin/python#-*-coding:utf-8-*-importtime,os,sys#获取输出需要备份的文件或者目录source_file=sys.argv[1]#通过os.path.isfile(source_file)函数来判断需要备份的是文件或目录state=os.path.isfile(source_file)printstate#如果是文件则执行以下代码ifstate==True:#获..
分类:
编程语言 时间:
2014-11-17 14:13:05
阅读次数:
155
#include#includeintmain(intargc,char*argv[]){QApplicationa(argc,argv);QDomDocumentdoc;QDomNodeinstruction=doc.createProcessingInstruction("xml","versi...
分类:
其他好文 时间:
2014-11-16 23:02:39
阅读次数:
274
An interesting dyadic (two-input) operator is thelinear blend operator: #include #include #include using namespace cv; int main( int argc, char** argv...
分类:
其他好文 时间:
2014-11-16 21:23:44
阅读次数:
181
有个需求,有个文件删除了,但是不确定线上机器还都存不存在#!/home/work/.jumbo/bin/expect -fset timeout -1set mac [lindex $argv 0]set password "***"spawn ssh username@$macexpect { ....
分类:
其他好文 时间:
2014-11-16 00:25:08
阅读次数:
1055
1、开发环境:安装Qt5.3.2(离线安装包安装);VS版本为:2010 SP1Rel;源代码默认保存格式为GB2312。2、输出乱码的代码#include #include int main(int argc, char *argv[]){ QCoreApplication a(argc, ...
分类:
其他好文 时间:
2014-11-14 21:08:27
阅读次数:
392