上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 77 下一页
摘要: Create a detector object.faceDetector = vision.CascadeObjectDetector;Read input image. I = imread('visionteam.jpg');Detect faces. bboxes = step(... 阅读全文
posted @ 2014-08-22 14:03 ahuo 阅读(577) 评论(0) 推荐(0) 编辑
摘要: >>se3 = strel('square',3)Neighborhood: 1 1 1 1 1 1 1 1 1>> se3 = strel('line',3 , 45)Neighborhood: 0 0 ... 阅读全文
posted @ 2014-08-22 11:17 ahuo 阅读(696) 评论(0) 推荐(0) 编辑
摘要: H:\Android\M9SDK_windows_1.0\platforms\android-2.3.1>emulator.exe -sysdir H:\Android\M9SDK_windows_1.0\platforms\android-2.3.1 -system images\system.i... 阅读全文
posted @ 2014-08-21 10:16 ahuo 阅读(177) 评论(0) 推荐(0) 编辑
摘要: alert($('#cc').calendar('options')['year']); 阅读全文
posted @ 2014-08-05 11:18 ahuo 阅读(1558) 评论(0) 推荐(0) 编辑
摘要: @MvcHtmlString.Create(string) 阅读全文
posted @ 2014-08-04 16:41 ahuo 阅读(209) 评论(0) 推荐(0) 编辑
摘要: $('#ltree').tree('reload'); 整树刷新 阅读全文
posted @ 2014-07-31 10:36 ahuo 阅读(435) 评论(0) 推荐(0) 编辑
摘要: HWND GetConsoleHwnd(void){#define MY_BUFSIZE 1024 // Buffer size for console window titles. HWND hwndFound; // This is what is returned to the... 阅读全文
posted @ 2014-06-27 15:11 ahuo 阅读(799) 评论(0) 推荐(0) 编辑
摘要: 1. Fixed: 大小不能改变2. Minimum: 已经是最小, 不能再被缩小, 但能放大.3. Maximum: 已经是最大, 不能再被放大, 但能缩小.4. Preferred: 控件的sizeHint()是他的sizeHint, 能被缩小, 放大.5. Expanding: 控件可以自行增... 阅读全文
posted @ 2014-05-23 15:01 ahuo 阅读(2072) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #pragma execution_character_set("utf-8")int main(int argc, char *argv[]){ QApplication app(argc,argv); QLabel hello(QOb... 阅读全文
posted @ 2014-05-21 15:00 ahuo 阅读(915) 评论(0) 推荐(0) 编辑
摘要: 在Linux 下经常需要链接一些 *.a的库文件,那怎么查看这些*.a 中包含哪些文件、函数、变量: 1. 查看文件:ar -t *.a 2. 查看函数、变量:nm *.a 阅读全文
posted @ 2014-05-13 15:29 ahuo 阅读(3043) 评论(0) 推荐(1) 编辑
摘要: gdb vc调试对照表:实现功能 vc gdb修改后编译 f7 make跳出函数(step out) shift+f11 finish,f重新启动 ctrl+shift+f5 run,r运行到指定行 f9+f5 tbreak,tb + continue,c中断程序 ctrl+alt+break ct... 阅读全文
posted @ 2014-05-13 10:40 ahuo 阅读(545) 评论(0) 推荐(0) 编辑
摘要: win2008下添加NFS安卓下运行(需要安装busybox 还有root)busybox mount -t nfs 192.168.1.2:/NFS /nfs -o nolock 阅读全文
posted @ 2014-05-04 14:39 ahuo 阅读(386) 评论(0) 推荐(0) 编辑
摘要: Regular Dll using shared MFC DLLextern"C"__declspec(dllexport)voidShow(){ AFX_MANAGE_STATE(AfxGetStaticModuleState()); CTest test; test.DoModal ();} 阅读全文
posted @ 2014-04-28 10:21 ahuo 阅读(529) 评论(0) 推荐(0) 编辑
摘要: RoyCShell.exe -PE -if:"G:\EncryptTool\Finder.exe" -of:"G:\EncryptTool\Finder_enc.exe" -AntiDbg -SctAlign -t:Rockey3 -VID:B00E0006 -BkChk:78 -Nrkt:"错误"... 阅读全文
posted @ 2014-04-23 09:33 ahuo 阅读(487) 评论(0) 推荐(0) 编辑
摘要: declare @i int set @i=1 while @i<(10000)begin INSERT INTO [Table]( [IDi] ,[IDo] ,[Synci] ) ( SELECT top 1 [IDi] ,@i ,[Synci] FROM [Table] ) set @i=@i+1 end 阅读全文
posted @ 2014-03-31 13:50 ahuo 阅读(393) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 77 下一页