摘要:
阅读全文
摘要:
添加GridItem布局XML文件 主界面添加GridView布局XML文件 自定义GridView适配器 主界面Activity AppInfo类 阅读全文
摘要:
// Drives.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "windows.h" #include "string.h" #include "direct.h" #include "stdlib.h" char dir[260]; wchar_t* char2wchar(char *cStr) { size_t len... 阅读全文
摘要:
1.正则表达式 function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return ... 阅读全文
摘要:
HWND desktop,task; desktop=FindWindow(L"ProgMan",NULL); task=FindWindow(L"Shell_TrayWnd",NULL); ShowWindow(task,SW_HIDE);//隐藏任务栏 //ShowWindow(desktop,SW_HIDE);//隐藏桌面 HWND desktop,t... 阅读全文
摘要:
div显示上下左右滚动条 这里是你要显示的内容 div显示上下滚动条的css代码 这里是你要显示的内容 div显示左右滚动条的css代码 这里是你要显示的内容 修改滚动条颜色的代码 SCROLLBAR-FACE-COLOR(立体滚动条凸出部分的颜色) SCROLLBAR-HIGHLIGHT-COLOR(滚动条空白部分的颜色) SCROLLBAR-SHADOW-... 阅读全文
摘要:
一. 问题: 强类型语言要求我们为所有希望比较的类型都实现一个实例 有一种方法可替代为每个min()实例都显式定义一个函数的方法这种方法很有吸引力但是也很危险.那就是用预处理器的宏扩展设施例如 : #define min(a,b) ((a) < (b) ? (a) : (b)) 在复杂调用的情况下, 阅读全文
摘要:
html端: php端: 阅读全文
摘要:
第一步:在C:\Windows\System32\drivers\etc中找到hosts配置服务 保存即可 第二步: C:\xampp\apache\conf\extra找到httpd-vhosts.conf,做一下修改 第三步:C:\xampp\apache\conf\extra找到httpd-s 阅读全文
摘要:
#include #include #include int main(int argc, char** argv) { std::string videoFile = "../test.avi"; cv::VideoCapture capture; capture.open(videoFile); ... 阅读全文
摘要:
//形态学腐蚀 cvErode(pDstImage,pDstImage,0,3); //形态学膨胀 cvDilate(pDstImage,pDstImage,0,4); //中值滤波 cvSmooth(pDstImage,pDstImage, CV_MEDIAN);//默认窗口大小为3*3 cvShowImage("vei",pDstImage);... 阅读全文
摘要:
CvSeq* contour = NULL; double minarea = 100.0; double tmparea = 0.0; CFileDialog dlg(true); if (dlg.DoModal()==IDOK) { CvMemStorage* storage = cvCreateMemStorage(0); ... 阅读全文
摘要:
cvAbs 计算数组中所有元素的绝对值 cvAbsDiff 计算两个数组差值的绝对值 cvAbsDiffs 计算数组和标量差值的绝对值 cvAdd 两个数组的元素级的加运算 cvAdds 一个数组和一个标量的元素级的相加运算 cvAddWeighted 两个数组的元素的加权相加运算(alpha融合) 阅读全文
摘要:
#include "iostream" #include "queue" #include "Windows.h" #include #include "opencv2/opencv.hpp" #include "Windows.h" #include "opencv2/core/core.hpp" #include "opencv2/highgui/highgui.hpp" #includ... 阅读全文