-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the model trained on the kitti dataset, testing our own dataset #56
Comments
Can you please share with me your LiDAR specs? |
Thanks for your reply, I tested it with two LiDARs. Virtual LIDAR is VLS-128(Matlab/simulink/lidar toolbox) and Real LiDAR is VLP-16. |
@Sunganghao hello, I also want to applythe model into my own dataset (like video in KITTI), can you show me the way how I can make point cloud file like in KITTI dataset (bin)? |
Hii Maudzung, |
@jacobsmarvel Hi, have you solved this problem? or do you have any idea about it ? |
@Sunganghao @jacobsmarvel have you solved the problem ? I am having the same problem while testing with my won dataset |
try to normalize your intensity values then it will work |
@Manojit-IITK Can I ask how you do it? |
Take the intensity column from the lidar data and the normalize it i.e (value - min_value)/(max_value - min_value) then replaced this normalized column with the precious one and make the bev map |
Thank you very much for your answer. This question has troubled me for a long time. I would like to ask if intensity is the value of PointCloud_top[:, 3] in kitti_bev_utils.py in the program?
If I print it out, the value of each frame looks like this: (value - min_value)/(max_value - min_value) What is the value? |
when you extract the lidar data into the liar variable at that time you normalized the 4tth column i.e lidar[:,3]. normalized the data before passing through it make_bev function. (value - min_value)/(max_value - min_value) this is the formula for normalizing the data between 0 to 1. |
hi,guys,I used the kitti dataset from the project for training and the resulting model was used to detect the vehicles in my own dataset and why it was invalid.My own dataset has been converted to kitti format (.bin) and is displayed correctly in the test, but it does not show the red box in the point cloud plot.
The text was updated successfully, but these errors were encountered: