上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页
该文被密码保护。 阅读全文
posted @ 2020-03-16 15:00 玥茹苟 阅读(531) 评论(0) 推荐(0)
摘要: int caculateDensity(std::vector<PointType>& in_points, double & density, const int& k) { if (in_points.size()<k) { std::cout << " erorr in_points.size 阅读全文
posted @ 2020-03-16 14:38 玥茹苟 阅读(427) 评论(0) 推荐(0)
摘要: 参考 https://help.coding.net/docs/host/git/installation.html https://www.jianshu.com/p/81143ef6c97f //打开git终端 Git 分支管理 本地分支管理 $ git checkout -b learn-ch 阅读全文
posted @ 2020-03-09 21:05 玥茹苟 阅读(354) 评论(0) 推荐(0)
摘要: 灰度图单通道实现:for (int i = 0; i < srcImg.rows; i++) { uchar *srcData = srcImg.ptr<uchar>(i); for (int j = 0; j < srcImg.cols; j++) { dstImg.at<uchar>(i, j) 阅读全文
posted @ 2020-03-09 18:49 玥茹苟 阅读(576) 评论(0) 推荐(0)
摘要: //////////////////////////////////////////////////////////////////////////////////////////////////////// //aa, bb为一条线段两端点 cc, dd为另一条线段的两端点 相交返回true, 不 阅读全文
posted @ 2020-03-09 11:07 玥茹苟 阅读(485) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-03-05 17:35 玥茹苟 阅读(237) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include <iostream> using namespace std; template <typename T> void DisplayValue(T value) { cout<<value<<endl; } struct Currency { 阅读全文
posted @ 2020-02-28 23:06 玥茹苟 阅读(636) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <iostream> #include <vector> float unifRand() { return (static_cast<float>(rand() / 阅读全文
posted @ 2020-02-28 18:07 玥茹苟 阅读(711) 评论(0) 推荐(0)
摘要: ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // 估计法线 int Top 阅读全文
posted @ 2020-02-26 23:53 玥茹苟 阅读(513) 评论(0) 推荐(0)
摘要: 二、稀疏矩阵分解 稀疏矩阵类 #include <Eigen/Sparse> #include <vector> #include <iostream> typedef Eigen::SparseMatrix<double> SpMat; // declares a column-major spa 阅读全文
posted @ 2020-01-10 15:16 玥茹苟 阅读(423) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页