All Projects → yukitsuji → voxelnet_chainer

yukitsuji / voxelnet_chainer

Licence: MIT License
VoxelNet implementation in Chainer

Programming Languages

python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language
matlab
3953 projects

Projects that are alternatives of or similar to voxelnet chainer

DenseLidarNet
No description or website provided.
Stars: ✭ 35 (+34.62%)
Mutual labels:  kitti-dataset, lidar-point-cloud, voxelnet
kitti-A-LOAM
Easy description to run and evaluate A-LOAM with KITTI-data
Stars: ✭ 28 (+7.69%)
Mutual labels:  kitti-dataset, lidar-point-cloud
Visualizing-lidar-data
Visualizing lidar data using Uber Autonomous Visualization System (AVS) and Jupyter Notebook Application
Stars: ✭ 75 (+188.46%)
Mutual labels:  kitti-dataset, lidar-point-cloud
progressive-coordinate-transforms
Progressive Coordinate Transforms for Monocular 3D Object Detection, NeurIPS 2021
Stars: ✭ 55 (+111.54%)
Mutual labels:  kitti-dataset, 3d-detection
chainer-DenseNet
Densely Connected Convolutional Network implementation by Chainer
Stars: ✭ 39 (+50%)
Mutual labels:  chainer
DSTC6-End-to-End-Conversation-Modeling
DSTC6: End-to-End Conversation Modeling Track
Stars: ✭ 56 (+115.38%)
Mutual labels:  chainer
kaggle-champs-scalar-coupling
19th place solution in "Predicting Molecular Properties"
Stars: ✭ 26 (+0%)
Mutual labels:  chainer
DSGN
DSGN: Deep Stereo Geometry Network for 3D Object Detection (CVPR 2020)
Stars: ✭ 276 (+961.54%)
Mutual labels:  3d-detection
SASensorProcessing
ROS node to create pointcloud out of stereo images from the KITTI Vision Benchmark Suite
Stars: ✭ 26 (+0%)
Mutual labels:  kitti-dataset
BtcDet
Behind the Curtain: Learning Occluded Shapes for 3D Object Detection
Stars: ✭ 104 (+300%)
Mutual labels:  lidar-point-cloud
neural style synthesizer
No description or website provided.
Stars: ✭ 15 (-42.31%)
Mutual labels:  chainer
chainer-ADDA
Adversarial Discriminative Domain Adaptation in Chainer
Stars: ✭ 24 (-7.69%)
Mutual labels:  chainer
Waymo Kitti Adapter
A tool converting Waymo dataset format to Kitti dataset format.
Stars: ✭ 83 (+219.23%)
Mutual labels:  kitti-dataset
efficient softmax
BlackOut and Adaptive Softmax for language models by Chainer
Stars: ✭ 12 (-53.85%)
Mutual labels:  chainer
chainer-wasserstein-gan
Chainer implementation of the Wesserstein GAN
Stars: ✭ 20 (-23.08%)
Mutual labels:  chainer
lda2vec
Mixing Dirichlet Topic Models and Word Embeddings to Make lda2vec from this paper https://arxiv.org/abs/1605.02019
Stars: ✭ 27 (+3.85%)
Mutual labels:  chainer
M3DETR
Code base for M3DeTR: Multi-representation, Multi-scale, Mutual-relation 3D Object Detection with Transformers
Stars: ✭ 47 (+80.77%)
Mutual labels:  kitti-dataset
book-ml
書籍「今すぐ試したい!機械学習・深層学習(ディープラーニング)画像認識プログラミングレシピ」のソースコードを配布するレポジトリです。
Stars: ✭ 29 (+11.54%)
Mutual labels:  chainer
graph-nvp
GraphNVP: An Invertible Flow Model for Generating Molecular Graphs
Stars: ✭ 69 (+165.38%)
Mutual labels:  chainer
KittiViz
Data visualizer for Kitti dataset.
Stars: ✭ 18 (-30.77%)
Mutual labels:  kitti-dataset

VoxelNet implementation in Chainer

ScreenShot

Reference:

Prepare datasets

KITTI dataset

  • 3D Detection Dataset link
  • (in data folder) train/val split link
cp data/*.txt dataset/ImageSets/

Execution

######## Training on the kitti dataset ########
python train.py experiments/orig_voxelnet/orig_voxelnet_single.yml

######## Evaluation on the kitti dataset ########
python evaluation.py experiments/orig_voxelnet/orig_voxelnet_eval.yml --gpu 0 --nms_thresh 0.5 --thresh 0.5

・Split gt and result files into train/val
python parse_dataset.py val.txt --gt_dir dataset/label_2/ --result_dir results/ --out_dir ../out/

・Provided on the KITTI competition
cd devkit_object/cpp
g++ -O3 -DNDEBUG -o evaluate_object evaluate_object.cpp -lboost_system -lboost_filesystem
cd ../.. && ./devkit_object/cpp/evaluate_object ./out/result ./out/gt

######## Inference on the kitti dataset ########
python demo.py experiments/orig_voxelnet/orig_voxelnet_demo.yml --gpu 0

######## Visualize on the kitti dataset ########
・Compate inputs for network by threshold
python visualize.py --type input --config experiments/orig_voxelnet/orig_voxelnet_viz.yml
・Calculate statistic of raw data
python visualize.py --type stats --config experiments/orig_voxelnet/orig_voxelnet_stats.yml

Compare inputs for network by threshold

Statistic of raw data

Requirement

  • Python3
  • Chainer
  • Cupy
  • ChainerCV
  • OpenCV
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].