上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页
摘要: 安装brazel (请使用最新版的brazel 和最新版的tensorflow ,版本不匹配会出错!!!) 下载bazel-0.23 https://pan.baidu.com/s/1XPYe_yKpPDY-u05PonCsZw 0w7x chmod +x bazel*****.sh ./bazel 阅读全文
posted @ 2019-03-21 20:04 洛笔达 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: 1.PCN hresh=0.37 0.43 0.97 2. YoloV3 训练集WiderFace thresh=0.2 看得出来yolo的准确度确实没有PCN高 3. RetinaNet 阅读全文
posted @ 2019-03-13 12:35 洛笔达 阅读(2481) 评论(0) 推荐(0) 编辑
摘要: 经过排查 发现是这里出了问题 然后发现是标注文件里有 x=0 y=0 这样的数据,46_Jockey_Jockey_46_576.txt , 那么肯定是标注文件出了问题!! 删除该标注文件即可。。 阅读全文
posted @ 2019-03-05 19:58 洛笔达 阅读(1155) 评论(0) 推荐(0) 编辑
摘要: 1. dowload the img and labels : http://mmlab.ie.cuhk.edu.hk/projects/WIDERFace/index.html 2. 阅读全文
posted @ 2019-02-26 12:01 洛笔达 阅读(535) 评论(0) 推荐(0) 编辑
摘要: wget https://github.com/OpenVPN/openvpn/archive/v2.4.6.tar.gz tar -zxvf v2.4.6.tar.gz cd openvpn* apt-get update apt-get install automake libssl libss 阅读全文
posted @ 2019-02-13 13:44 洛笔达 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 参考自官网 https://pjreddie.com/darknet/install/ 1. 下载darknet 并编译 注意事项: 如果是使用CPU, 那么就需要设置以下几个参数 GPU=0CUDNN=0OPENCV=1OPENMP=0DEBUG=0 如果opencv是使用的自己编译的库,那么就需 阅读全文
posted @ 2019-01-17 17:04 洛笔达 阅读(1487) 评论(0) 推荐(0) 编辑
摘要: 参考链接 https://stackoverflow.com/questions/16699247/what-is-a-cache-friendly-code 只是堆积:缓存不友好与缓存友好代码的典型例子是矩阵乘法的“缓存阻塞”。 朴素矩阵乘法看起来像 如果N很大,例如,如果N * sizeof(e 阅读全文
posted @ 2018-12-04 12:26 洛笔达 阅读(3674) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; class String { public: String(const char *pdata); String(const String &rhs); String &operator = (const String &rhs); ~String(); private: ... 阅读全文
posted @ 2018-11-19 11:11 洛笔达 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 1.赋值构造函数 右值引用 左值引用 m.u store data m store u cols rows and so on. 2. 拷贝构造函数 右值引用 左值引用 阅读全文
posted @ 2018-11-14 13:19 洛笔达 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: void yuv420_to_rgb24_sse3(uint8_t *yp, uint8_t *up, uint8_t *vp, int sy, int suv, int width, int height, uint8_t *rgb, int srgb) { //定义空间 __m128i y0r0, y0r1, u0, v0; __m128i y00r0, y0... 阅读全文
posted @ 2018-11-09 16:24 洛笔达 阅读(892) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页