上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 54 下一页
摘要: 任意位置新建行,不需要光标到尾部,shift+enter 对当前某个模块文件设置分屏复制:setting—Keymap——Mainmenu—window——Editor Tabs——split V/H 访问历史粘贴板:Ctrl + Shift + V 多行注释:也是在前面行号选中多行,crtl+/, 阅读全文
posted @ 2020-01-12 01:19 Parallax 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 将预处理器定义和链接中的子系统subsystem的_WINDOW都改为__CONSOL 项目类型改为exe 如果多次打包,每次打包新增的头文件要用不同的宏名作为导出API前缀 阅读全文
posted @ 2020-01-07 17:13 Parallax 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 可以让客户端,每次选版型时,自动写入json数据到这个json文件。 1.用init(int type,vector) 配置是可以的,但是不能写死。一次配置不算写死。 1、传入的json_input: [ {"type": i},{ "objType1": "string1"}, { "objTyp 阅读全文
posted @ 2020-01-06 00:13 Parallax 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1 void validate_classifier_multi(char *datacfg, char *filename, char *weightfile) 2 { 3 int i, j; 4 network net = parse_network_cfg(filename); 5 set_b 阅读全文
posted @ 2020-01-05 23:16 Parallax 阅读(528) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/tgyf/p/3839894.html #include "io.h" #include <fstream> #include <string> void getFilesAll(string path, vector<string>& files) 阅读全文
posted @ 2020-01-04 18:46 Parallax 阅读(306) 评论(0) 推荐(0) 编辑
摘要: /*#include <iostream> #include <stdio.h> #include <string> #include <vector> #include <io.h> #include <string.h> #include <opencv2/opencv.hpp> using n 阅读全文
posted @ 2020-01-04 17:03 Parallax 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 //c++编译器,对源文件的编译实质就是对每个cpp都分别生成.obj,包括main.cpp. 3 但是main.cpp和其他的.cpp文件是有区别的。其他的.cpp可以直接include到各自的头文件进行编译。 4 而main.cpp即便包含了所有的其他头文件,依然缺少main.cp 阅读全文
posted @ 2019-12-29 21:53 Parallax 阅读(637) 评论(0) 推荐(0) 编辑
摘要: 可以看到其中有两个exe类型的项目:darknet.exe和uselib.exe。 其中daknet.sln是原生的网络源码,可以通过main()函数传参,原生地实现检测功能。 2、还有一个动态库项目dark.dll:这个dark.sln是包括yolo_v2_class.cpp这个顶层设计的检测类的 阅读全文
posted @ 2019-12-29 21:02 Parallax 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 另可参考https://www.cnblogs.com/yelongsan/p/4134384.html 1 #include <string> 2 #include <json/json.h> 3 #include <stdio.h> 4 #include <fstream> 5 using na 阅读全文
posted @ 2019-12-29 01:12 Parallax 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 利用框架训练得到权重 将框架的推理功能yolo_dll.sln打包成库。(.lib,.h.dll) 新建项目project调用yolo动态链接库及opencv等其他dll库,实现推理。 将project再打成库dll,与.lib和.h一起交付前端。 每一步打库的过程都需要用到的dll库对应的.lib 阅读全文
posted @ 2019-12-26 18:02 Parallax 阅读(195) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 54 下一页