GaussianPyramidDown Method

CVB.Net Documentation
This function down samples an image in the sense of a Gaussian pyramid.

Namespace:  Stemmer.Cvb.Foundation
Assembly:  Stemmer.Cvb.Foundation (in Stemmer.Cvb.Foundation.dll) Version: 14.0.0.0
Syntax

public static Image Down(
	Image img
)

Parameters

img
Type: Stemmer.CvbImage
Image to be down sampled.

Return Value

Type: Image
Down-sampled image.
Exceptions

ExceptionCondition
ArgumentNullExceptionIf the input img is null
ObjectDisposedExceptionIf the input img has already been disposed
Remarks

It applies a Gaussian Kernel5x5 to the image, then down samples the image by omitting every odd row and column, producing an output image whose size is halved in each dimension.
See Also

Reference