https://github.com/bchao1/poissonpy

📈 poissonpy is a Python Poisson Equation library for scientific computing, image and video processing, and computer graphics.

https://github.com/bchao1/poissonpy

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • â—‹
    CITATION.cff file
  • ✓
    codemeta.json file
    Found codemeta.json file
  • â—‹
    .zenodo.json file
  • â—‹
    DOI references
  • â—‹
    Academic publication links
  • â—‹
    Committers with academic emails
  • â—‹
    Institutional organization owner
  • â—‹
    JOSS paper metadata
  • â—‹
    Scientific vocabulary similarity
    Low similarity (8.0%) to scientific vocabulary

Keywords

differential-equations image-processing pde pde-solver poisson poisson-equation scientific-computing
Last synced: 5 months ago · JSON representation

Repository

📈 poissonpy is a Python Poisson Equation library for scientific computing, image and video processing, and computer graphics.

Basic Info
  • Host: GitHub
  • Owner: bchao1
  • License: other
  • Language: Python
  • Default Branch: master
  • Homepage:
  • Size: 20.4 MB
Statistics
  • Stars: 14
  • Watchers: 2
  • Forks: 1
  • Open Issues: 0
  • Releases: 0
Topics
differential-equations image-processing pde pde-solver poisson poisson-equation scientific-computing
Created over 3 years ago · Last pushed over 3 years ago
Metadata Files
Readme License

README.md

poissonpy

Plug-and-play standalone library for solving 2D Poisson equations. Useful tool in scientific computing prototyping, image and video processing, computer graphics.

Features

  • Solves the Poisson equation on sqaure or non-square rectangular grids.
  • Solves the Poisson equation on regions with arbitrary shape.
  • Supports arbitrary boundary and interior conditions using sympy function experssions or numpy arrays.
  • Supports Dirichlet, Neumann, or mixed boundary conditions.

Disclaimer

This package is only used to solve 2D Poisson equations. If you are looking for a general purpose and optimized PDE library, you might want to checkout the FEniCSx project.

Usage

Import necessary libraries. poissonpy utilizes numpy and sympy greatly, so its best to import both:

```python import numpy as np from sympy import sin, cos from sympy.abc import x, y

from poissonpy import functional, utils, sovlers ```

Defining sympy functions

In the following examples, we use a ground truth function to create a mock Poisson equation and compare the solver's solution with the analytical solution.

Define functions using sympy function expressions or numpy arrays:

```python fexpr = sin(x) + cos(y) # create sympy function expression laplacianexpr = functional.getsplaplacianexpr(fexpr) # create sympy laplacian function expression

f = functional.getspfunction(fexpr) # create sympy function laplacian = functional.getspfunction(laplacianexpr) # create sympy function ```

Dirichlet Boundary Conditions

Define interior and Dirichlet boundary conditions:

python interior = laplacian boundary = { "left": (f, "dirichlet"), "right": (f, "dirichlet"), "top": (f, "dirichlet"), "bottom": (f, "dirichlet") }

Initialize solver and solve Poisson equation:

python solver = Poisson2DRectangle(((-2*np.pi, -2*np.pi), (2*np.pi, 2*np.pi)), interior, boundary, X=100, Y=100) solution = solver.solve()

Plot solution and ground truth: python poissonpy.plot_3d(solver.x_grid, solver.y_grid, solution) poissonpy.plot_3d(solver.x_grid, solver.y_grid, f(solver.x_grid, solver.y_grid))

|Solution|Ground truth|Error| |--|--|--| ||||

Neumann Boundary Conditions

You can also define Neumann boundary conditions by specifying neumann_x and neumann_y in the boundary condition parameter.

```python

xderivativeexpr = functional.getspderivativeexpr(fexpr, x) yderivativeexpr = functional.getspderivativeexpr(fexpr, y)

interior = laplacian boundary = { "left": (f, "dirichlet"), "right": (functional.getspfunction(xderivativeexpr), "neumannx"), "top": (f, "dirichlet"), "bottom": (functional.getspfunction(yderivativeexpr), "neumanny") } ```

|Solution|Ground truth|Error| |--|--|--| ||||

Zero-mean solution

If the boundary condition is purely Neumann, then the solution is not unique. Naively solving the Poisson equation gives bad results. In this case, you can set the zero_mean paramter to True, such that the solver finds a zero-mean solution.

python solver = solvers.Poisson2DRectangle( ((-2*np.pi, -2*np.pi), (2*np.pi, 2*np.pi)), interior, boundary, X=100, Y=100, zero_mean=True)

|zero_mean=False|zero_mean=True|Ground truth| |--|--|--| ||||

Laplace Equation

It's also straightforward to define a Laplace equation - we simply set the interior laplacian value to 0. In the following example, we set the boundary values to be spatially-varying periodic functions.

```python interior = 0 # laplace equation form left = poissonpy.get2dsympyfunction(sin(y)) right = poissonpy.get2dsympyfunction(sin(y)) top = poissonpy.get2dsympyfunction(sin(x)) bottom = poissonpy.get2dsympyfunction(sin(x))

boundary = { "left": (left, "dirichlet"), "right": (right, "dirichlet"), "top": (top, "dirichlet"), "bottom": (bottom, "dirichlet") } ```

Solve the Laplace equation:

python solver = Poisson2DRectangle( ((-2*np.pi, -2*np.pi), (2*np.pi, 2*np.pi)), interior, boundary, 100, 100) solution = solver.solve() poissonpy.plot_3d(solver.x_grid, solver.y_grid, solution, "solution") poissonpy.plot_2d(solution, "solution")

|3D surface plot|2D heatmap| |--|--| |||

Arbitrary-shaped domain

Use the Poisson2DRegion class to solve the Poisson eqaution on a arbitrary-shaped function domain. poissonpy can be seamlessly integrated in gradient-domain image processing algorithms.

The following is an example where poissonpy is used to implement the image cloning algorithm proposed in Poisson Image Editing by Perez et al., 2003. See examples/poisson_image_editing.py for more details.

```python

compute laplacian of interpolation function

Gxsrc, Gysrc = functional.getnpgradient(source) Gxtarget, Gytarget = functional.getnpgradient(target) Gsrcmag = (Gxsrc**2 + Gysrc2)0.5 Gtargetmag = (Gxtarget**2 + Gytarget2)0.5 Gx = np.where(Gsrcmag > Gtargetmag, Gxsrc, Gxtarget) Gy = np.where(Gsrcmag > Gtargetmag, Gysrc, Gytarget) Gxx, _ = functional.getnpgradient(Gx, forward=False) , Gyy = functional.getnp_gradient(Gy, forward=False) laplacian = Gxx + Gyy

solve interpolation function

solver = solvers.Poisson2DRegion(mask, laplacian, target) solution = solver.solve()

alpha-blend interpolation and target function

blended = mask * solution + (1 - mask) * target ```

Another example of using poissonpy to implement flash artifacts and reflection removal, using the algorithm proposed in Removing Photography Artifacts using Gradient Projection and Flash-Exposure Sampling by Agrawal et al. 2005. See examples/flash_noflash.py for more details.

```python Gxa, Gya = functional.getnpgradient(ambient) Gxf, Gyf = functional.getnpgradient(flash)

gradient projection

t = (Gxa * Gxf + Gya * Gyf) / (Gxa**2 + Gya**2 + 1e-8) Gxfproj = t * Gxa Gyfproj = t * Gya

compute laplacian (div of gradient)

lap = functional.getnpdiv(Gxfproj, Gyfproj)

integrate laplacian field

solver = solvers.Poisson2DRegion(mask, lap, flash) res = solver.solve() ```

Owner

  • Name: Brian Chao
  • Login: bchao1
  • Kind: user
  • Location: Stanford, California
  • Company: Stanford University

Stanford Ph.D. student. Research in computational photography, displays, and computer graphics. Open source enthusiast.

GitHub Events

Total
  • Watch event: 9
Last Year
  • Watch event: 9

Committers

Last synced: 10 months ago

All Time
  • Total Commits: 38
  • Total Committers: 1
  • Avg Commits per committer: 38.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
bchao1 w****0@g****m 38

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels