上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 54 下一页

2019年1月22日

摘要: 参考 1. https://blog.csdn.net/haijunsm/article/details/82733584 完 阅读全文
posted @ 2019-01-22 15:34 鹅要长大 阅读(3494) 评论(0) 推荐(0)

2019年1月21日

摘要: c++将数字转换成固定长度的字符串 将数字转换为字符串,且设置为固定长度的,不足补零。 参考 1. https://blog.csdn.net/m0_37733057/article/details/79035923 完 阅读全文
posted @ 2019-01-21 12:44 鹅要长大 阅读(3181) 评论(0) 推荐(0)

2019年1月14日

摘要: 人脸识别常用的性能评价指标 参考 1. https://blog.csdn.net/liuxiao214/article/details/83177402 完 阅读全文
posted @ 2019-01-14 13:05 鹅要长大 阅读(2576) 评论(0) 推荐(0)

2019年1月11日

摘要: class impl class FaceDetection::Impl { public: Impl() : detector_(new seeta::fd::FuStDetector()), slide_wnd_step_x_(4), slide_wnd_step_y_(4), min_face 阅读全文
posted @ 2019-01-11 17:25 鹅要长大 阅读(363) 评论(0) 推荐(0)

2019年1月10日

该文被密码保护。 阅读全文
posted @ 2019-01-10 11:30 鹅要长大 阅读(3) 评论(0) 推荐(0)

2019年1月9日

摘要: error问题 isnan在cmath中被取消宏定义; 使用的时候可以在isnan前加上std命名空间即可; 阅读全文
posted @ 2019-01-09 16:50 鹅要长大 阅读(2397) 评论(0) 推荐(0)
摘要: 参考 1. 图像的几何变换-平移和镜像; 2.图像的几何变换-缩放和旋转; 3. opencv图像旋转实现; 完 阅读全文
posted @ 2019-01-09 09:36 鹅要长大 阅读(159) 评论(0) 推荐(0)

2019年1月3日

摘要: 1. https://blog.csdn.net/sky04/article/details/6881649 2. https://blog.csdn.net/wushuangge/article/details/80104152 3. https://blog.csdn.net/tt_ren/ar 阅读全文
posted @ 2019-01-03 13:21 鹅要长大 阅读(342) 评论(0) 推荐(0)

2019年1月2日

摘要: problem 232. Implement Queue using Stacks 参考 1. Leetcode_ 232_Implement Queue using Stacks; 完 阅读全文
posted @ 2019-01-02 12:49 鹅要长大 阅读(157) 评论(0) 推荐(0)

2018年12月29日

摘要: problem 231-power-of-two solution1 class Solution { public: bool isPowerOfTwo(int n) { if(n==0) return false; while(n%2==0) { n /= 2; } return n==1; } 阅读全文
posted @ 2018-12-29 14:46 鹅要长大 阅读(147) 评论(0) 推荐(0)
摘要: C++中vector容器的常用操作方法实例总结 参考 1. C++中vector容器的常用操作方法实例总结; 完 阅读全文
posted @ 2018-12-29 10:46 鹅要长大 阅读(365) 评论(0) 推荐(0)

2018年12月28日

摘要: problem 226-invert-binary-tree code solution1-DFS /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode 阅读全文
posted @ 2018-12-28 16:58 鹅要长大 阅读(166) 评论(0) 推荐(0)

2018年12月27日

摘要: re 1. Procrustes Analysis普氏分析法; 2. BigCowPeking; end 阅读全文
posted @ 2018-12-27 13:33 鹅要长大 阅读(1712) 评论(0) 推荐(0)
摘要: problem 225. Implement Stack using Queues code class MyStack { public: std::queue<int> myqueue; /** Initialize your data structure here. */ MyStack() 阅读全文
posted @ 2018-12-27 12:46 鹅要长大 阅读(115) 评论(0) 推荐(0)
摘要: sdm re 1. CSDN_newbee; 2. SDM_pdf; 3. github; 4. author_homepage; 5. github-patrikhuber; 6. materials; 7. matlab_code; 8. Derive; 9. 106points; end 阅读全文
posted @ 2018-12-27 10:30 鹅要长大 阅读(785) 评论(0) 推荐(0)

2018年12月26日

摘要: re: 1. 机器学习之特征归一化(normalization); 2. 详解特征归一化; 3. zhihu; 4. 最大最小标准化与Z-score标准化; End 阅读全文
posted @ 2018-12-26 16:05 鹅要长大 阅读(249) 评论(0) 推荐(0)
摘要: 参考 1. 图像不变性特征; 2. matlab实现; 3. HU矩和Zernike矩; 完 阅读全文
posted @ 2018-12-26 13:29 鹅要长大 阅读(462) 评论(0) 推荐(0)

2018年12月25日

摘要: ML DL 参考 1.CSDN大神; 完 阅读全文
posted @ 2018-12-25 17:46 鹅要长大 阅读(522) 评论(0) 推荐(0)
摘要: error 阅读全文
posted @ 2018-12-25 16:42 鹅要长大 阅读(2946) 评论(0) 推荐(0)

2018年12月24日

摘要: path 文件 Macros.h 即表示系统Eigen版本是3.2.92; 参考 1.CSDN博客; 完 阅读全文
posted @ 2018-12-24 09:23 鹅要长大 阅读(4651) 评论(0) 推荐(1)
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 54 下一页

导航