Skip to content
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

pointpillars #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ cmake_example.egg-info/
dist/
logs/
point_pillars.egg-info/
logs_*/
.vscode/
.ipynb_checkpoints/
archive/
visualization/
logs.zip
356 changes: 356 additions & 0 deletions Analyse_Input_Pipeline.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(point_pillars)
add_subdirectory(pybind11)
pybind11_add_module(point_pillars SHARED src/point_pillars.cpp)
pybind11_add_module(point_pillars SHARED src/point_pillars.cpp)
pybind11_add_module(point_pillars_v2 SHARED src/point_pillars_v2.cpp)
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Forked from (https://github.com/tyagi-iiitv/PointPillars.git) [Under Development]

The files with the v2_2 extentions are scripts that does not do class regression.
It only learn to classify single class. The confidence of objectness is used to determine
whether there is an object of a particular class or not.


# About Point Pillars
Point Pillars is a very famous Deep Neural Network for 3D Object Detection for LiDAR point clouds. With the application of object detection on the LiDAR devices fitted in the self driving cars, Point Pillars focuse on fast inference ~50fps, which was magnitudes above as compared to other networks for 3D Object detection. In this repo, we are trying to develop point pillars in TensorFlow. [Here's](https://medium.com/@a_tyagi/pointpillars-3d-point-clouds-bounding-box-detection-and-tracking-pointnet-pointnet-lasernet-67e26116de5a?source=friends_link&sk=4a27f55f2cea645af39f72117984fd22) a good first post to familiarize yourself with Point Pillars.

Expand Down
365 changes: 365 additions & 0 deletions Visualizing_Point_Pillar_Image.ipynb

Large diffs are not rendered by default.

Loading