second.pytorch icon indicating copy to clipboard operation
second.pytorch copied to clipboard

Parameter configuration,Can I set x<0

Open WSTao opened this issue 6 years ago • 9 comments

Hello, inside the code implementation, there is a parameter that is the point cloud data range, x_min=0, that is, only the target in front of the car is detected. Can you set x_min<0, so that the network can detect all targets around the car?

change point_cloud_range:[0, -39.68, -3, 69.12, 39.68, 1] to [-69.12, -39.68,-3, 69.12, 39.68, 1]

WSTao avatar Dec 27 '18 04:12 WSTao

yes, but

  1. this will greatly increase inference time and gpu memory usage. be careful and consider use car_tiny to inference.
  2. the pretrained model is trained with only front area. I am not sure the performance of other area.

traveller59 avatar Dec 28 '18 01:12 traveller59

yes, but

  1. this will greatly increase inference time and gpu memory usage. be careful and consider use car_tiny to inference.
  2. the pretrained model is trained with only front area. I am not sure the performance of other area.

understand, thank you very much

WSTao avatar Dec 28 '18 01:12 WSTao

@WSTao you also need to modify anchor generator params to generate anchors in other area.

traveller59 avatar Dec 28 '18 02:12 traveller59

Thank you very much, I still have a problem. I want to detect all the targets at once. I am now on the parameters of car, adding the categories of detection targets. How to weigh the parameters of different targets?

WSTao avatar Dec 28 '18 02:12 WSTao

@WSTao Hi, Have you solve this problem of the params setting in detecting all targets around the car

ryontang avatar Jan 14 '21 13:01 ryontang

@WSTao Hi, Have you solve this problem of the params setting in detecting all targets around the car

You can refer to this implementation,https://github.com/open-mmlab/OpenPCDet

WSTao avatar Jan 15 '21 00:01 WSTao

@WSTao Hi, Have you solve this problem of the params setting in detecting all targets around the car

You can refer to this implementation,https://github.com/open-mmlab/OpenPCDet

Okay, thanks a lot, Do you know any ways that can transforms model trained by PCDet to ONNX file?

ryontang avatar Jan 20 '21 01:01 ryontang

You can refer to this implementation,https://github.com/open-mmlab/OpenPCDet

Okay, thanks a lot, Do you know any ways that can transforms model trained by PCDet to ONNX file?

You can consult its author or learn about the implementation of pytorch to onnx

WSTao avatar Jan 20 '21 07:01 WSTao

You can refer to this implementation,https://github.com/open-mmlab/OpenPCDet

Okay, thanks a lot, Do you know any ways that can transforms model trained by PCDet to ONNX file?

You can consult its author or learn about the implementation of pytorch to onnx

okay, thanks a lot!

ryontang avatar Jan 26 '21 02:01 ryontang