Compute the image pyramid

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

Syntax

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

Parameters

maxLevel
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