摘要:
/* 回调函数的格式如下: int sqlite_callback( void* pv, //由 sqlite3_exec() 的第四个参数传递而来 int argc, //表的列数 char** argv, //指向查询结果的指针数组, 可以由 sqlite3_column_text() 得到 char** col //指向表头名的... 阅读全文
摘要:
Project->Properties->Configuration Properties->Debuging->Working Directory改为$(ProjectDir) ./ 该目录 ../该目录的父目录 阅读全文
摘要:
像素修改: 使用CImage绘制PNG图片 阅读全文
摘要:
1、#include 2、在需要开启控制台窗口的地方调用 AllocConsole();//注意检查返回值 3、在需要输出调试的时候调用_cprintf等函数 如_cprintf("i=%d\n", i); 4、关闭控制台的时候调用 FreeConsole(); 注意:上述方法在输出中文时会出现乱码,如果需要输出中文,请使用下面的方法: AllocConsole(); freopen(... 阅读全文
摘要:
//肤色提取,skinArea为二值化肤色图像 void skinExtract(const Mat &frame, Mat &skinArea) { Mat YCbCr; vector planes; //转换为YCrCb颜色空间 cvtColor(frame, YCbCr, CV_RGB2YCrCb); //将多通道图像分离为多个单通道图像 split(YCbCr, pla... 阅读全文
摘要:
memcpy(predata,frame,1920*1080*4); 阅读全文
摘要:
extern "C" { __declspec(dllexport) int psq_add(int a, int b); } C:\Users\pansq>mkexp mydll.a mydll.dll extern "C" { int psq_add(int a, int b); } 阅读全文
摘要:
卷积神经网络VS配置 阅读全文
摘要:
opencv_haartraining.exe -data xml -vec pos.vec -bg neg/neg.txt -w 20 -h 20 -mem 144 opencv_haartraining.exe -data xml/ -vec pos.vec -bg neg/neg.txt -nstages 4 -nsplits 1 -minhitrate 0.999 -maxfalsea... 阅读全文
摘要:
adb查看logcat adb logcat :* *:S 查看指定TAG的Logadb查看最上层activity:linux: adb shell dumpsys activity | grep "mFocusedActivity"windows: adb shell dumpsys activity | findstr "mFocusedActivity"adb修改可读可写权限#mount#... 阅读全文
摘要:
String title = "\n\""+itemInfo.itemSSID+"\" "; View password_view = AppData.inflater.inflate(R.layout.wifi_cancel_connect, null); TextView password_ti 阅读全文
摘要:
String title = ""; if(itemInfo!=null) title = "\n\""+itemInfo.itemSSID+"\" "; else title = "\n\""+ssid+"\" "; title += getResources().getString(R.string.network_wifi_password_error_info... 阅读全文
摘要:
char *bgFile = "C:/C_Project/HandTraining/Debug/res/bg.jpg"; FILE *file = fopen(bgFile, "r"); if (file == NULL){ cout << "bg.jpg文件不存在..." << endl; return -1; } char *h... 阅读全文
摘要:
查看所有网络信息 查看 eth0 查看DNS 查看ip 设置网关 添加dns 查询eth0配置 ifconfig eth0配置 阅读全文
摘要:
1.sudo apt-get install wine 2.打开网址http://www.ubuntukylin.com/application/show.php?lang=cn&id=279,下载wineQQ 3. 安装此目录下的所有文件 阅读全文
摘要:
找两个字符中间的内容比如找abc5dfsdfs6H a-H的内容,a.*?H 阅读全文
摘要:
ipDNS_text.requestFocus(); InputMethodManager imm = (InputMethodManager)ipDNS_text.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); imm.to 阅读全文
摘要:
\\server01DESKTOP-RE5QEBU\pqpqlabs\\fileserverpansq@sh.pqlabs.comP1q2w3e 阅读全文
摘要:
1.工具栏放下面或者左边的命令 gsettings set com.canonical.Unity.Launcher launcher-position Left gsettings set com.canonical.Unity.Launcher launcher-position Bottom 2.查看Ubuntu版本 cat /etc/issue 阅读全文
摘要:
参数从Local中获取,例如:Local.ENGLISH; 使用之前应该root系统,adb shell ->su 然后# pm grant com.example.clickdemo android.permission.CHANGE_CONFIGURATION手动赋予权限,否则会报反射异常 阅读全文