Internship Notes Week3

Week3

Simulate LIDAR and RGBD with publishing ROS topic using gazebo
Reading and taking notes

Surface Reconstruction

From unorganized points or exploits the underlying structure of the acquired data
Reconstructing Parametric Surfaces
Constructing an Implicit Function

TSDF

Features
  1. Using multiple measurement data to ensure the accuracy of the measurement and make the surface thinner
  2. Build Signed Distance Function
  3. Ignore the point far from surface
Important points
  1. weighted signed function

  2. space carving(mark the corresponding voxels as “empty” following the lines of sight back from the observed surface)

  3. t s d f i ( x ) = m a x ( − 1 , m i n ( 1 , s d f i ( x ) t ) ) w i t h s d f i ( x ) = l a s e r i ( x ) − d i s t i ( x ) tsdf_i(x)=max(-1,min(1,\frac{sdf_i(x)}{t}))\quad with\quad sdf_i(x)=laser_i(x)-dist_i(x) tsdfi(x)=max(1,min(1,tsdfi(x)))withsdfi(x)=laseri(x)disti(x)

  4. ensure the t s d f tsdf tsdf near the surface is around 0 and value range from -1 to 1

  5. let the weighted function falls to 0 when the point is far from the surface, and the distance when it falls to zero is typically based on the noise of laser scanner, that is why call it “truncated” compared to ESDF

  6. divide the whole space into three parts, “empty”, “observed isosurface”, “unseen” and “holes to fill isosurface”

question1: to make the reconstruction more real, to fill the surface that haven’t been detected is crucial, but I don’t get the point how to do that.
question2: some really sharp surface like a drill may interfere the robustness of the whole algorithm, and how to maintain such robustness when encounter, let’s say, a drill?

Some Other Maps’ Structure

  1. Occupancy Grid Map(dense)

  2. Octo-map(sparse, structured)

  3. Voxel Hashing

    1. Data Structure:
    Struct Voxel{
    	float sdf;
    	uchar colorRGB[3];
    	uchar weight;
    }
    
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值