Skip to main content

Fast Gaussian Accumualtor. Detect dominant plane normals by integrating normals on a sphere.

Project description

Fast Gaussian Accumulator

PyPI Docs Run Tests License

A Gaussian Sphere Accumulator refers to the notion of discretizing the surface of the unit sphere (a gaussian surface) into buckets/cells. One can then integrate/accumulate a list of points (aka unit normals) into these buckets. The end result is then a histogram of the sphere. There are many choices for the discretization process, however this library uses equilateral triangles because each cell will have nearly the same area and shape. This process is done by refining an icosahedron. The following image shows our discretization strategy. The first object discretizes a sphere with uniform spacing of phi/theta (note small cells at poles), the second object is an icosahedron, the third object is the first level of refinement for an icosahedron, the last object is the second level of refinement of an icosahedron.

Icosahedron

Once a level of refinement is chosen, one can then integrate point vectors into the cells/buckets. For example integrating the normals of a level four (4) icosahedron would look like the image below. Bright yellow indicates more counts for the triangle cells. This is basically showing that the floor [0, 0, 1] and walls [0, +/-1, 0] are common.

GaussianAccumulator

Finding the Cell

To do this one must find the cell that corresponds to the point. This is a search process that has been implemented in several fashions in this repo. The main ways are as follows:

  • 3D KD Tree - Do a nearest neighbor search using a binary tree.
    • GaussianAccumulatorKDPY - One implementation using scipy kdtree.
    • GaussianAccumulatorKD One implementation uses C++ nanoflann.
  • Global Index and Local Search - A 3D point is transformed to a unique integer id. The unique ids have the property that ids close to each other will be close to each other in 3D space. The closest id is found corresponding to a triangle cell. A local search of triangle neighbors is performed to find closest triangle cell to the point.
    • GaussianAccumulatorOpt - Works good on only on the top hemisphere. Projects 3D point to plane using Azimuth Equal Area projection. Convert 2D point to int32 index using Hilbert Curve. This implementation is severely limited and is not recommended.
    • GaussianAccumulatorS2Beta - Works on full sphere! Uses Googles S2 space filling curve (uint64). 3D point is projected to unit cube, assigned to a face of the cube, and then a Hilbert curve index is found for that cube face. This is recommended, and what I use.

Use GaussianAccumulatorS2Beta! Look at python -m examples.python.run_normals

Peak Detection

There are two (2) peak detection methods of used within this repository. The user can choose which one best suite there needs.

2D Image Peak Detection

This method basically unwraps the icosahedron as a 2D image in a very particular way as described by Gauge Equivariant Convolutional Networks and the Icosahedral CNN. This unwrapping is hardcoded and fixed once a refinement level is chosen so its very fast. The library then uses a 2D peak detector algorithm followed up with agglomerative hierarchial clustering (AHC) to group similar peaks. All of this is user configurable.

1D Signal Peak Detection

This performs peak detection on the 1D thread following the hilbert curve. This produces more peaks which are actually near each other on S2 and are then grouped with AHC. This actually works pretty well, but I recommend to use the 2D Image Peak Detector.

Installation

For python there are pre-built binary wheel on PyPI for Windows and Linux. You can install with pip install fastgac.

Below are instruction to build the C++ Package (and python package) manaully with CMake. Installation is entirely through CMake now. You must have CMake 3.14 or higher installed and a C++ compiler with C++ 14 or higher.

Build Project Library

  1. mkdir cmake-build && cd cmake-build. - create build folder directory
  2. cmake ../ -DCMAKE_BUILD_TYPE=Release . For windows also add -DCMAKE_GENERATOR_PLATFORM=x64
  3. cmake --build . -j$(nproc) --config Release - Build FastGA

Build and Install Python Extension

For Developers

  1. Install conda or create a python virtual environment (Why?). I recommend conda for Windows users.
  2. cd cmake-build && cmake --build . --target python-package --config Release -j$(nproc)
  3. cd lib/python_package && pip install -e .

If you want to run the examples then you need to install the following (from main directory):

  1. pip install -r dev-requirements.txt

For Python Users (Requires CMake)

  1. Install conda or create a python virtual environment (Why?). I recommend conda for Windows users.
  2. pip install .

If you want to run the examples then you need to install the following (from main directory):

  1. pip install -r dev-requirements.txt

Documentation

Please see documentation website for more details.

Citation

To support our work please cite:

@Article{s20174819,
AUTHOR = {Castagno, Jeremy and Atkins, Ella},
TITLE = {Polylidar3D-Fast Polygon Extraction from 3D Data},
JOURNAL = {Sensors},
VOLUME = {20},
YEAR = {2020},
NUMBER = {17},
ARTICLE-NUMBER = {4819},
URL = {https://www.mdpi.com/1424-8220/20/17/4819},
ISSN = {1424-8220}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastgac-1.0.5.tar.gz (114.0 kB view hashes)

Uploaded Source

Built Distributions

fastgac-1.0.5-cp39-cp39-win_amd64.whl (254.3 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

fastgac-1.0.5-cp39-cp39-manylinux2010_x86_64.whl (358.1 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

fastgac-1.0.5-cp39-cp39-macosx_11_0_arm64.whl (312.2 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fastgac-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl (312.2 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fastgac-1.0.5-cp39-cp39-macosx_10_9_universal2.whl (312.2 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

fastgac-1.0.5-cp38-cp38-win_amd64.whl (254.2 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

fastgac-1.0.5-cp38-cp38-manylinux2010_x86_64.whl (358.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

fastgac-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl (312.1 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fastgac-1.0.5-cp37-cp37m-win_amd64.whl (250.0 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

fastgac-1.0.5-cp37-cp37m-manylinux2010_x86_64.whl (361.8 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

fastgac-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (302.4 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

fastgac-1.0.5-cp36-cp36m-win_amd64.whl (249.7 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

fastgac-1.0.5-cp36-cp36m-manylinux2010_x86_64.whl (362.1 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

fastgac-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl (302.3 kB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page