- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些由包含 3D 点云的 LIDAR 读数创建的 Numpy 二进制文件。我希望能够通过从文件中读取每个点云来绘制自上而下(正交) View 。我查找了各种 3D 点云库,例如 Open3d、pyntcloud 等,但它们都不适用 NPY 文件。我该如何绘制它们?
我不是在这里要求图书馆推荐。我只是在寻找一个可能的方向,因为我还没有找到一种方法来通过从 NPY 文件中读取它们来绘制点云。
编辑:当我使用 np.load()
从其中一个文件中读取数据时,它看起来像这样:
array([[(-0. , 0. , 0. , 0. , 857827240, 1579782324),
(-0. , 0. , 0. , 0. , 857882120, 1579782324),
(-0. , 0. , 0. , 0. , 857937680, 1579782324),
...,
(-0. , -0. , 0. , 0. , 957653240, 1579782324),
(-0. , -0. , 0. , 0. , 957709120, 1579782324),
(-0. , -0. , 0. , 0. , 957764680, 1579782324)],
[(15.622366 , -8.086195 , 5.7023315 , 0.00392157, 857828544, 1579782324),
(16.292194 , -8.503972 , 5.8512874 , 0.07843138, 857883424, 1579782324),
(15.855744 , -8.374023 , 5.767106 , 0.02352941, 857938984, 1579782324),
...,
(16.500275 , -9.402869 , 6.0786157 , 0.01568628, 957654544, 1579782324),
(16.197226 , -9.334285 , 6.023082 , 0.00392157, 957710424, 1579782324),
(16.260717 , -9.463429 , 6.0455737 , 0.00392157, 957765984, 1579782324)],
[(16.526688 , -8.541684 , 4.6792016 , 0.00392157, 857829848, 1579782324),
(15.844723 , -8.292216 , 4.5818253 , 0. , 857884728, 1579782324),
(15.915991 , -8.414634 , 4.5984206 , 0.00392157, 857940288, 1579782324),
...,
(15.649654 , -8.954793 , 4.6751213 , 0.01176471, 957655848, 1579782324),
(17.318968 , -9.951033 , 4.9357953 , 0.01176471, 957711728, 1579782324),
(16.125185 , -9.398413 , 4.7603803 , 0.00392157, 957767288, 1579782324)],
...,
[( 2.5268526, -1.6420269 , -0.24141277, 0.02745098, 857780808, 1579782324),
( 2.529189 , -1.6714373 , -0.24518971, 0.03137255, 857836368, 1579782324),
( 2.5140662, -1.6922294 , -0.24403782, 0.03137255, 857891248, 1579782324),
...,
( 1.7650445, -1.4837685 , -0.2509078 , 0.02745098, 957606808, 1579782324),
( 1.742465 , -1.5004072 , -0.24779865, 0.02352941, 957662368, 1579782324),
( 1.7232444, -1.5187881 , -0.245681 , 0.02745098, 957718248, 1579782324)],
[(-2.7442074, 0.9481321 , 1.1273874 , 0. , 857786024, 1579782324),
(-2.7466307, 0.94417626, 1.1274364 , 0. , 857841584, 1579782324),
(-2.749064 , 0.94022495, 1.1274853 , 0. , 857896464, 1579782324),
...,
(-3.4345033, 1.3002251 , 1.1344001 , 0. , 957612024, 1579782324),
(-3.4270716, 1.2909878 , 1.1304668 , 0. , 957667584, 1579782324),
(-3.4362614, 1.2907308 , 1.1331499 , 0. , 957723464, 1579782324)],
[(-3.1056237, 1.1257029 , 1.1556424 , 0. , 857782112, 1579782324),
(-3.1041813, 1.1214051 , 1.1539782 , 0. , 857837672, 1579782324),
(-3.102756 , 1.1170869 , 1.1523142 , 0. , 857892552, 1579782324),
...,
(-3.779868 , 1.4852207 , 1.1581781 , 0. , 957608112, 1579782324),
(-3.8071766, 1.4963622 , 1.1718962 , 0. , 957663672, 1579782324),
(-3.7931492, 1.4851598 , 1.163371 , 0. , 957719552, 1579782324)]],
dtype=[('x', '<f4'), ('y', '<f4'), ('z', '<f4'), ('intensity', '<f4'), ('t_low', '<u4'), ('t_high', '<u4')])
当我尝试按照@Dorian 的建议绘制它时:
x = data[:, 0]
y = data[:, 1]
z = data[:, 2]
fig = plt.figure(figsize=(8, 8))
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x, y, z)
plt.show()
我收到以下错误:
TypeError Traceback (most recent call last)
<ipython-input-20-d6d9ea7be681> in <module>
1 fig = plt.figure(figsize=(8, 8))
2 ax = fig.add_subplot(111, projection='3d')
----> 3 ax.scatter(x, y, z)
4 plt.show()
~/anaconda3/envs/pointclouds/lib/python3.8/site-packages/mpl_toolkits/mplot3d/axes3d.py in scatter(self, xs, ys, zs, zdir, s, c, depthshade, *args, **kwargs)
2325 xs, ys, zs, s, c = cbook.delete_masked_points(xs, ys, zs, s, c)
2326
-> 2327 patches = super().scatter(xs, ys, s=s, c=c, *args, **kwargs)
2328 art3d.patch_collection_2d_to_3d(patches, zs=zs, zdir=zdir,
2329 depthshade=depthshade)
~/anaconda3/envs/pointclouds/lib/python3.8/site-packages/matplotlib/__init__.py in inner(ax, data, *args, **kwargs)
1597 def inner(ax, *args, data=None, **kwargs):
1598 if data is None:
-> 1599 return func(ax, *map(sanitize_sequence, args), **kwargs)
1600
1601 bound = new_sig.bind(ax, *args, **kwargs)
~/anaconda3/envs/pointclouds/lib/python3.8/site-packages/matplotlib/axes/_axes.py in scatter(self, x, y, s, c, marker, cmap, norm, vmin, vmax, alpha, linewidths, verts, edgecolors, plotnonfinite, **kwargs)
4459 else:
4460 x, y, s, c, colors, edgecolors, linewidths = \
-> 4461 cbook._combine_masks(
4462 x, y, s, c, colors, edgecolors, linewidths)
4463
~/anaconda3/envs/pointclouds/lib/python3.8/site-packages/matplotlib/cbook/__init__.py in _combine_masks(*args)
1122 x = safe_masked_invalid(x)
1123 seqlist[i] = True
-> 1124 if np.ma.is_masked(x):
1125 masks.append(np.ma.getmaskarray(x))
1126 margs.append(x) # Possibly modified.
~/anaconda3/envs/pointclouds/lib/python3.8/site-packages/numpy/ma/core.py in is_masked(x)
6520 if m is nomask:
6521 return False
-> 6522 elif m.any():
6523 return True
6524 return False
~/anaconda3/envs/pointclouds/lib/python3.8/site-packages/numpy/core/_methods.py in _any(a, axis, dtype, out, keepdims)
43
44 def _any(a, axis=None, dtype=None, out=None, keepdims=False):
---> 45 return umr_any(a, axis, dtype, out, keepdims)
46
47 def _all(a, axis=None, dtype=None, out=None, keepdims=False):
TypeError: cannot perform reduce with flexible type
一小部分数据样本是 here 。
最佳答案
matplotlib.pyplot
将是我个人的首选。
您没有提供任何数据或数据的保存方式,因此我假设点云的点保存在 Nx3
维 numpy
数组中:
data = np.load('file.npy')
x = data[:, 0]
y = data[:, 1]
z = data[:, 2]
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import proj3d
fig = plt.figure(figsize=(8, 8))
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x, y, z)
plt.show()
如果您只想拥有 2D(俯 View ),请不要使用 3D 投影并忽略您的 z 值:
fig = plt.figure(figsize=(8, 8))
ax = fig.add_subplot(111)
ax.scatter(x, y)
plt.show()
关于python-3.x - 如何从 npy 文件中绘制 3D 点云?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62433465/
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我试图用这种形式简单地获取数字 28 integer+space+integer+integer+space+integer我试过这个正则表达式 \\s\\d\\d\\s 但我得到了两个数字11 和
最近一直在学习D语言。我一直对运行时感到困惑。 从我能收集到的关于它的信息中,(这不是很多)我知道它是一种有助于 D 的一些特性的运行时。像垃圾收集一样,它与您自己的程序一起运行。但是既然 D 是编译
想问一下这两个正则表达式有区别吗? \d\d\d 与 \d{3} 我已经在我的本地机器上使用 Java 和 Windows 操作系统对此进行了测试,两者都工作正常并且结果相同。但是,当在 linux
我正在学习 Go,而且我坚持使用 Go 之旅(exercise-stringer.go:https://tour.golang.org/methods/7)。 这是一些代码: type IPAddr
我在Java正则表达式中发现了一段令我困惑的代码: Pattern.compile( "J.*\\d[0-35-9]-\\d\\d-\\d\\d" ); 要编译的字符串是: String string
我在 ruby 代码上偶然发现了这个。我知道\d{4})\/(\d\d)\/(\d\d)\/(.*)/是什么意思,但是\1-\2-\3-\4 是什么意思? 最佳答案 \1-\2-\3-\4 是 b
我一直在努力解决这个问题,这让我很恼火。我了解 D 运行时库。它是什么,它做什么。我也明白你可以在没有它的情况下编译 D 应用程序。就像 XoMB 所做的那样。好吧,XoMB 定义了自己的运行时,但是
我有两个列表列表,子列表代表路径。我想找到所有路径。 List> pathList1 List> pathList2 当然是天真的解决方案: List> result = new ArrayList>
我需要使用 Regex 格式化一个字符串,该字符串包含数字、字母 a-z 和 A-Z,同时还包含破折号和空格。 从用户输入我有02-219 8 53 24 输出应该是022 198 53 24 我正在
目标是达到与this C++ example相同的效果: 避免创建临时文件。我曾尝试将 C++ 示例翻译为 D,但没有成功。我也尝试过不同的方法。 import std.datetime : benc
tl;dr:你好吗perfect forwarding在 D? 该链接有一个很好的解释,但例如,假设我有这个方法: void foo(T)(in int a, out int b, ref int c
有什么方法可以在 D 中使用abstract auto 函数吗? 如果我声明一个类如下: class MyClass { abstract auto foo(); } 我收到以下错误: mai
有没有人为内存中重叠的数组切片实现交集?算法在没有重叠时返回 []。 当 pretty-print (使用重叠缩进)内存中重叠的数组切片时,我想要这个。 最佳答案 如果您确定它们是数组,那么只需取 p
我已经开始学习 D,但我在使用 Andrei Alexandrescu 所著的 The D Programming Language 一书中提供的示例时遇到了一些麻烦。由于 int 和 ulong 类
如何创建一个不可变的类? 我的目标是创建一个实例始终不可变的类。现在我只是用不可变的方法和构造函数创建了一个“可变”类。我将其称为 mData,m 表示可变。然后我创建一个别名 alias immut
不久前我买了《The D Programming Language》。好书,很有教育意义。但是,我在尝试编译书中列出的语言功能时遇到了麻烦:扩展函数。 在这本书中,Andrei 写了任何可以像这样调用
我在 D http://www.digitalmars.com/d/2.0/lazy-evaluation.html 中找到了函数参数的惰性求值示例 我想知道如何在 D 中实现可能的无限数据结构,就像
这个问题在这里已经有了答案: 12 年前关闭。 Possible Duplicate: Could anyone explain these undefined behaviors (i = i++
当前是否可以跨模块扫描/查询/迭代具有某些属性的所有函数(或类)? 例如: source/packageA/something.d: @sillyWalk(10) void doSomething()
我是一名优秀的程序员,十分优秀!