Awesome
Analytical Integration of Spherical Harmonics
This code implements the analytical integration method from Integrating Clipped Spherical Harmonics Expansions. It permits to efficiently integrates Spherical Harmonics (SH) over polygonal geometries.
Use this code
The integration code is header only and template based. It requires a C++11 compiler and uses Eigen to perform linear algebra operations. Eigen is provided as a submodule of this git repository.
A CMake script is provided to perform the sanity check of the code. Examples of use of the spherical integration code can be found in test
. To compile the test suite, please init the different submodules using git submodule update --init --recursive
and use the CMake script to generate the different binaries.
Templates
This code relies on templates to enable a simpler integration into other codebases. We provide examples of our wrappers in tests/Test.hpp
. To use our code, you will have to define the following class wrappers:
class SH
that providesFastBasis
, a method to compute the vector of Spherical Harmonics basis elements for a given input vector and other SH related functions. See our implementation intests/SphericalInt.cpp
.class Vector
that represent 3D vectors. This class needs to provide static functions such asDot
,Normalize
andCross
.class Triangle
andclass Edge
that represent a spherical triangle which is a simple iterator over a set of edges.
Using Spherical Integration Code
The spherical integration code is located in the SphericalIntegration.hpp
header. Given an input triangle triangle
and a Spherical Harmonics decomposition a function to integrate clm
, the method works as follows:
First, convert the SH expansion to a Zonal Harmonics expansion zlm
with a set of basis vectors basis
. You can use our SamplingBlueNoise
method located in DirectionsSampling.hpp
to generate a basis vectors:
// Generate a basis vector for an order `order` SH
const auto basis = SamplingBlueNoise<Vector>(2*order+1);
Then use this basis vectors to compute the conversion SH -> ZH -> Power of cosines:
// Get the Zonal weights matrix and the Zlm -> Ylm conversion matrix
// and compute the product of the two: `Prod = A x Zw`.
const auto ZW = ZonalWeights<Vector>(basis);
const auto Y = ZonalExpansion<SH, Vector>(basis);
const auto A = computeInverse(Y);
const auto cpw = clm.transpose() * (A*ZW);
Note that the matrix A*ZW
can be cached to improve performances.
Then the AxialMoments
method will return the vector of cosine power integrals for the triangle triangle
:
// Analytical evaluation of the integral of power of cosines for
// the different basis elements up to the order defined by the
// number of elements in the basis
const auto moments = AxialMoments<Triangle, Vector>(triangle, basis);
return cpw.dot(moments);