ImageTColor, TDepthBuildPyramid Method |
http://www.emgu.com
Compute the image pyramid
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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
)
member BuildPyramid :
maxLevel : int -> Image<'TColor, 'TDepth>[]
Parameters
- maxLevel
- Type: SystemInt32
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
Type:
ImageTColor,
TDepthThe image pyramid
See Also