码迷,mamicode.com
首页 >  
搜索关键字:pcl    ( 680个结果
使用C#完成QQ发送邮件(简单使用)
class QQEmail { public bool IsSetEmail(string FromAddress, string ToAddress, string Message,string Pwd) { MailAddress Address = new MailAddress(FromAd ...
分类:Windows程序   时间:2020-07-15 22:52:54    阅读次数:81
PCL——(6)八叉树Octree
@ 一、八叉树简介: 体素化使用空间的均匀分割 八叉树对空间非均匀分割(按需分割) 1D数据的2叉树表示 2D数据的4叉树表示 3D数据的8叉树表示 二、构建步骤 (1).设定最大递归深度。 (2).找出场景的最大尺寸,并以此尺寸建立第一个立方体。 (3).依序将单位元元素丢入能被包含且没有子节点的 ...
分类:其他好文   时间:2020-07-10 00:10:14    阅读次数:88
python自动化测试——unittest测试用例setup和teardown
import unittest class TestOrder(unittest.TestCase): @classmethod def setUpClass(cls): print("所有用例之前执行") def setUp(self): print("每个用例开始前执行") def tearDo ...
分类:编程语言   时间:2020-07-07 20:43:08    阅读次数:93
python自动化测试——pytest测试用例setup和teardown
import pytest class TestCase(): def setup_class(self): print("setup_class:所有用例执行之前") def setup_method(self): print("setup_method: 每个用例开始前执行") def tear ...
分类:编程语言   时间:2020-07-07 20:29:29    阅读次数:106
ros 点云和PCL 点云的转换 pointcloud2 pointcloud<>
https://answers.ros.org/question/136916/conversion-from-sensor_msgspointcloud2-to-pclpointcloudt/ ...
分类:其他好文   时间:2020-07-07 11:33:25    阅读次数:223
PCL —— (2)自带的点云类型PointT
@ PointXYZ——成员变量: float x, y, z; PointXYZ是使用最常见的一个点数据类型,因为它只包含三维xyz坐标信息,这三个浮点数附加一个浮点数来满足存储对齐,用户可利用points[i].data[0],或者points[i].x访问点的x坐标值。 union { flo ...
分类:其他好文   时间:2020-07-06 20:07:02    阅读次数:91
Pipeline
Pipeline可以将许多算法模型串联起来,比如将特征提取、归一化、分类组织在一起形成一个典型的机器学习问题工作流。主要带来两个好处: 1.直接调用fit和predict方法来对pipeline中的所有算法模型进行训练和预测 2.可以结合grid search对参数进行选择 在下面的例子中,我们使用 ...
分类:其他好文   时间:2020-07-06 16:10:14    阅读次数:45
一个获取时间的Python小程序
这是一个获得时间的Python小程序 import ntplib from time import ctime c = ntplib.NTPClient() response = c.request('time.pool.aliyun.com') print(ctime(response.tx_ti ...
分类:微信   时间:2020-07-06 01:21:33    阅读次数:109
VS2017配置PCL1.9.1 for win10
安装链接 https://www.jianshu.com/p/463f54c91ab7 1.9.1 安装包下载 官网路径: https://github.com/PointCloudLibrary/pcl/releases 百度云分享: 链接:https://pan.baidu.com/s/14iQ ...
分类:Windows程序   时间:2020-06-28 12:58:34    阅读次数:121
springcloud feign配置
feign: httpclient: # feign最大连接数 max-connections: 200 # feign单个路径的最大连接数 max-connections-per-route: 50 okhttp: # 让feign使用Apache okhttp做请求,而不是默认的urlConne ...
分类:编程语言   时间:2020-06-28 09:39:14    阅读次数:81
680条   上一页 1 2 3 4 5 6 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!