简体   繁体   English

如何在Kitti数据集中的每个点上标记Velodyen点?

[英]How can I label velodyen points in Kitti dataset point per point?

I am trying to train my neutral network using velodyen points in kitti dataset. 我正在尝试使用kitti数据集中的velodyen点训练我的中性网络。 The dataset has around 450 frame as bin file . 数据集有大约450帧作为bin文件。 Each frame has around 120k row of x,y,z,re as shown below: 每帧都有大约12万行x,y,z,re,如下所示:

在此处输入图片说明

However, I want to add another column that has the labels for each point . 但是,我想添加另一列,其中每个点都有标签。

Any thought how I can handle this ? 有没有想到我该如何处理?

Thanks in advance 提前致谢

The KITTI Vision Benchmark Suite does not provide per-point labels so if you want that information you would have to manually annotate it or find other dataset to work with (like: http://www.semantic3d.net/ ). KITTI Vision Benchmark Suite不提供每点标签,因此,如果您想要该信息,则必须手动对其进行注释或查找其他可使用的数据集(例如: http : //www.semantic3d.net/ )。

I guess that you could use the 3D bounding box information ( http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=3d ) to label all the points inside the bounding box with the corresponding class, but you will still have missing per-point labels for the rest of the scene. 我想您可以使用3D边界框信息( http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=3d )来用相应的类标记边界框内的所有点,但是您场景的其余部分仍将缺少按点标签。 So maybe kitti is not the right dataset for what you are trying to do (use per-point labels) 因此,kitti可能不是您想要做的事情的正确数据集(使用每点标签)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何检查一个点是否在由另外两个点定义的线上? - How can I check if a point is on a line defined by two other points? 如何从Kitti数据集计算基本矩阵? - How do I compute the fundamental matrix from Kitti dataset? 如何找到所有点的2D numpy数组中的点大于参考数组中的对应点的百分比? - How can I find the percentage of times that a point in a 2D numpy array is greater than the corresponding point in a reference array, for all points? 给定一个包含 n 个点的列表,如何使用 numpy 生成一个包含从每个点到每个其他点的距离的矩阵? - Given a list of n points, how can I generate a matrix that contains the distance from every point to every other point using numpy? 如果非常接近并且可以被视为单个点,我如何从列表中删除点的坐标? - How can I remove coordinates of points from lists if that are very close and and can be considered as a single point? Python 乌龟:如何使乌龟 go 在通过列表后变为点列表中的一个点 - Python turtle: How can I make the turtle go to a point in a list of points after it goes through the list 如何在 3d 空间中定义矢量点的自定义类并计算它们的中心(平均)点? - How can I define a custom class of vector points in 3d space and calculate their center(mean) point? 如何从一个点画一条线到一个列表中的多个点 - How can I draw a line from one point to a list multiple points 如何为多个点设置动画以围绕单个点独立旋转? - How can I animate multiple points to revolve independently around a single point? 我如何计算字符串中的浮点数,将浮点数识别为一个数字? -Python - How can I count number of floating points in a string, recognizing the floating point as one number? - Python
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM