Solves a Poisson equation, remap result pixels to [0..1] and returns the solution.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public static FIBITMAP MultigridPoissonSolver(
	FIBITMAP Laplacian,
	int ncycle
)
Visual Basic (Declaration)
Public Shared Function MultigridPoissonSolver ( _
	Laplacian As FIBITMAP, _
	ncycle As Integer _
) As FIBITMAP
Visual C++
public:
static FIBITMAP MultigridPoissonSolver(
	FIBITMAP Laplacian, 
	int ncycle
)

Parameters

Laplacian
Type: FreeImageAPI..::.FIBITMAP
Handle to a FreeImage bitmap.
ncycle
Type: System..::.Int32
Number of cycles in the multigrid algorithm (usually 2 or 3)

Return Value

Handle to a FreeImage bitmap.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also