请选择 进入手机版 | 继续访问电脑版

点云技术相关产学研社区

 找回密码
 立即注册加入PCL中国点云技术相关产学研社区

扫一扫,访问微社区

查看: 4137|回复: 2

深度学习在三维数据识别方面的ETHZ课程公开资料2017年检索

[复制链接]
发表于 2017-7-6 17:53:50 | 显示全部楼层 |阅读模式
3D Object Recognition with Deep Networks Project for 3D Vision - ETHZ
https://github.com/tobiagru/Deep-3D-Obj-Recognition
其中包含了多个模型的事例验证,以及对应的文档、源码、和参考资料说明。很不错的入门实战资料。
回复

使用道具 举报

发表于 2017-8-7 15:24:14 | 显示全部楼层
该教程主要重现了Voxnet和3D shapenet,均有源码提供
https://github.com/dimatura/voxnet
http://3dshapenets.cs.princeton.edu/


其中涉及了三个三维数据集
1、ModelNet - CAD model
http://modelnet.cs.princeton.edu/
该数据集中为.OFF文件,可以用meshlab打开,3D shapenet的源码中提供体素化的matlab toolbox以及部分体素化后的.mat文件,可以用源码中的plot3D.mat程序进行显示。
ModelNet10: manually aligned the orientation of the CAD models for this 10-class subset as well

2、Sydney Urban Objects - LiDAR data
http://www.acfr.usyd.edu.au/pape ... bjectsDataset.shtml
contains labeled Velodyne LiDAR scans of 631 urban objects in 26 categories.

3、 NYUv2 - RGBD data
http://cs.nyu.edu/~silberman/datasets/nyu_depth_v2.html
The NYU-Depth V2 data set is comprised of video sequences from a variety of indoor scenes as recorded by both the RGB and Depth cameras from the Microsoft Kinect.
回复 支持 反对

使用道具 举报

发表于 2017-8-13 20:23:25 | 显示全部楼层
OFF文件的格式为
顶点数  面数 0
顶点坐标(x、y、z)
...
组成面的三个顶点下标
...

3d shapenet源码3D/off_loader.m依次读取.off文件构成offobj结构的顶点和面
其中
1、顶点坐标
center = (max(offobj.vertices) + min(offobj.vertices)) / 2;
offobj.vertices = bsxfun(@minus, offobj.vertices, center);

2、为了遵循matlab的惯例,faces中各顶点下标+1

3、可以根据需要进行rotation and stretch


注:matlab编译C、C++程序方法
http://www.pclcn.org/bbs/forum.p ... &extra=page%3D1
回复 支持 反对

使用道具 举报

本版积分规则

QQ|小黑屋|点云技术相关产学研社区 ( 陕ICP备13001629号 )

GMT+8, 2024-4-19 10:09 , Processed in 2.428512 second(s), 16 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表