
3D数据集
文章平均质量分 53
THE@JOKER
一个无耻混蛋
展开
-
CenterNet :Objects as Points 学习笔记
https://blog.youkuaiyun.com/c20081052/article/details/89358658https://www.jianshu.com/p/0ef56b59b9achttps://blog.youkuaiyun.com/weixin_38715903/article/details/98039181原创 2021-05-16 14:56:37 · 138 阅读 · 0 评论 -
CSF
https://mp.weixin.qq.com/s/ZwfYJ0GpEcgKo-lZCIht8A原创 2021-05-10 12:35:28 · 3326 阅读 · 3 评论 -
mayavi 显示bbox 和 朝向
import numpy as npimport mayavi.mlabimport pickleimport timedef plot3Dbox(corners): for i in range(corners.shape[0]): corner = corners[i] idx = np.array([0, 1, 2, 3, 0, 4, 5, 6, 7, 4, 5, 1, 2, 6, 7, 3]) x = corner[0, idx]转载 2021-04-02 18:57:30 · 336 阅读 · 0 评论 -
KITTI 3D目标检测的评估指标
Car AP_R40@0.70, 0.50, 0.50:bbox AP:95.5675, 92.1874, 91.3088bev AP:95.6500, 94.7010, 93.99183d AP:95.6279, 94.5680, 93.6853aos AP:95.54, 91.98, 90.94Pedestrian AP@0.50, 0.50, 0.50:bbox AP:65.0374, 61.3875, 57.8241bev AP:60.1475, 54.9657, 51.17原创 2021-03-31 19:01:41 · 20842 阅读 · 12 评论 -
kitti_object_vis
数据集从Kitti对象检测数据集下载数据(calib,image_2,label_2,velodyne),并将其放在kitti / object的数据文件夹中文件夹结构如下:kitti object testing calib image_2 label_2 velodyne training calib image_2原创 2021-03-16 21:06:08 · 2046 阅读 · 3 评论 -
kitti .pkl文件转换txt
import syssys.getdefaultencoding()import pickleimport numpy as npnp.set_printoptions(threshold=1000000000000000)path = '/kitti_infos_test.pkl'file = open(path,'rb')inf = pickle.load(file,encoding='iso-8859-1') #读取pkl文件的内容print(inf)#fr.close(原创 2021-03-16 19:46:13 · 602 阅读 · 0 评论 -
kitti LIDAR点云生成鸟瞰图BEV
import numpy as npfrom PIL import Imageimport matplotlib.pyplot as plt # 点云读取pointcloud = np.fromfile(str("000009.bin"), dtype=np.float32, count=-1).reshape([-1, 4])# 设置鸟瞰图范围side_range = (-40, 40) # 左右距离fwd_range = (0, 70.4) # 后前距离 x_points = p原创 2021-03-15 17:25:42 · 1904 阅读 · 0 评论 -
kitti LIDAR点云文件的读取和显示
import numpy as npimport mayavi.mlab pointcloud = np.fromfile(str("000010.bin"), dtype=np.float32, count=-1).reshape([-1,4]) print(pointcloud.shape)x = pointcloud[:, 0] # x position of pointy = pointcloud[:, 1] # y position of pointz = pointclo转载 2021-03-15 17:14:45 · 1306 阅读 · 0 评论 -
KITTI 数据集
Kitti数据集下载地址:http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=2d1.KITTI数据集概述KITTI数据集由德国卡尔斯鲁厄理工学院和丰田美国技术研究院联合创办,是目前国际上非常流行的自动驾驶场景下的计算机视觉算法评测数据集。该数据集用于评测立体图像(stereo),光流(optical flow),视觉测距(visual odometry),3D物体检测(object detection)和3D跟踪(tr原创 2021-03-08 15:03:56 · 2179 阅读 · 0 评论