Compute the image pyramid

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Image<TColor, TDepth>[] BuildPyramid(
	int maxLevel
)
Visual Basic (Declaration)
Public Function BuildPyramid ( _
	maxLevel As Integer _
) As Image(Of TColor, TDepth)()
Visual C++
public:
array<Image<TColor, TDepth>^>^ BuildPyramid(
	int maxLevel
)

Parameters

maxLevel
Type: System..::.Int32
The number of level's for the pyramid; Level 0 referes to the current image, level n is computed by calling the PyrDown() function on level n-1

Return Value

The image pyramid

See Also