SqueezeSegV2 icon indicating copy to clipboard operation
SqueezeSegV2 copied to clipboard

How to train on kitti dataset?

Open lucasjinreal opened this issue 5 years ago • 5 comments

How to train on kitti?

To be specific, there 2 questions:

  1. What does network input which is inside samples directory, it is a array of [64, 512, 5], but normally point cloud is 4 dimensions, where does the 5th dimension from?

  2. How to generate lidar-2d data?

lucasjinreal avatar Feb 28 '19 05:02 lucasjinreal

We provide a converted KITTI data that you can directly download.

The 5 dimensions include: x, y, z, intensity, mask, where the mask indicates if this is a missing pixel or not.

The 2d projection method is described in the SqueezeSegV1 paper: https://arxiv.org/abs/1710.07368

BichenWuUCB avatar Feb 28 '19 07:02 BichenWuUCB

@BichenWuUCB thanks, still has one more question, the ouput is [64, 512], with cls id inside, does it means, network can only predict of an area cls pretty much like bev image bouding box? How to visual the result directly on point cloud with color points?

lucasjinreal avatar Feb 28 '19 07:02 lucasjinreal

I mean, network can not preduce the height of object, does it?

lucasjinreal avatar Feb 28 '19 07:02 lucasjinreal

@BichenWuUCB i wrote a code 2d projection method described in the SqueezeSegV1 paper, but there always have lines in the middle of the image, why is that? are you use parameter v_res=26.9/64, h_res=0.17578125?

lonlonago avatar May 28 '19 06:05 lonlonago

May I ask how is the mask data obtained?

We provide a converted KITTI data that you can directly download.

The 5 dimensions include: x, y, z, intensity, mask, where the mask indicates if this is a missing pixel or not.

The 2d projection method is described in the SqueezeSegV1 paper: https://arxiv.org/abs/1710.07368

Stephanie-Shen324 avatar Feb 08 '23 08:02 Stephanie-Shen324