-
大小: 59KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-05-06
- 语言: Matlab
- 标签: matlab depthmap pointcloud
资源简介
基于matlab平台上的深度图.png传换成三维点云数据,并存储为ply文件,简洁易懂,需要已知深度内参:fx,fy,cx,cy
代码片段和文件信息
function build_ply(outfilexyzrgb)
%outfile is the binary ply‘filename which you want to make;
%xyz is the N*3 matrix for point cloud‘s coordinate data;
%rgb is the color for every point respectively.
if(size(xyz1)~=size(rgb1))
error(‘Input xyz and rgb arguments should have same number of rows‘);
end
if(size(xyz2)~=3 | size(rgb2)~=3)
error(‘Input xyz aand rgb arguments should have 3 columns‘);
end
pt3d(:1) = xyz(:1);
pt3d(:2) = xyz(:2);
pt3d(:3) = xyz(:3);
pt3d=pt3d‘;
RGB(:1) = uint8(rgb(:1));
RGB(:2) = uint8(rgb(:2));
RGB(:3) = uint8(rgb(:3));
RGB=RGB‘;
dataChunk = [reshape(typecast(reshape(single(pt3d)1[])‘uint8‘)3*4[]); RGB];
size(dataChunk2)
file = writePLYhead(outfile size(dataChunk2));
fwrite(file dataChunk‘uint8‘);
fclose(file);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-22 15:52 DepthtoCloud\
文件 813 2018-07-20 14:04 DepthtoCloud\build_ply.m
文件 60148 2018-12-10 11:58 DepthtoCloud\depth.png
文件 529 2018-12-22 15:05 DepthtoCloud\DepthtoCloud.asv
文件 503 2018-12-22 15:52 DepthtoCloud\DepthtoCloud.m
文件 69 2018-12-22 15:49 DepthtoCloud\intrinsics.txt
文件 733 2018-06-27 16:11 DepthtoCloud\writePLYhead.m
- 上一篇:matlab生成ply程序
- 下一篇:matlab神经网络资料
相关资源
- 线结构光中心提取算法matlab
- 基线解算的matlab源码
- 基于相位相关的图像平移检测算法m
- 指静脉处理代码
- SIMPLE算法Matlab代码
- 《无人驾驶车辆模型预测控制》书中
- 基于SIFT特征的图像配准MATLAB代码
- 多目标遗传算法matlab程序
- 布谷鸟算法的matlab代码
- MATLAB+背景减除目标检测+鱼头截取
- matlab实现文件读写波形处理,小波变
- RBF神经网络的训练 MATLAB源程序代码
- SMO_matlabfunction.rar
- agent蜂拥的实现matlab
- 如何自定义一个神经网络
- 万有引力搜索算法(Matlab)
- 标准差分进化算法多目标线性规划的
- matlab完整GUI 源程序免费
- matlab神经网络资料
- matlab生成ply程序
- 测井曲线的MATLAB绘制
- 最大后验实现图像盲复原
- 小波变换 matlab程序
- SVM用于故障诊断的实现
- 基于遗传算法的投影寻踪模型Matlab源
- labview matlab 小波去噪
- 自适应控制算法-matlab编程实现
- 油位计仪表盘识别matlab代码实现
- 罚函数matlab实现
- 蒙特卡洛MATLAB程序
评论
共有 条评论