http://www.emgu.com
Compute the image pyramid
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth>[] BuildPyramid(
int maxLevel
) |
Visual Basic |
---|
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