Basics
Guides
API Reference
Basics
Guides
API Reference
[6:14] static extends: object
Static wrappers for boofcv.alg.filter.blur.GBlurImageOps.
mean (object Input, object Output, int Radius)
Applies a mean blur.
Input is the source BoofCV image wrapper or compatible Java object.Output is the destination BoofCV image wrapper or compatible Java object.Radius is the blur radius in pixels.The output image Java object returned by BoofCV.meanB (object Input, object Output, int Radius, Border = null)
Applies a mean blur with a border policy.
Input is the source BoofCV image wrapper or compatible Java object.Output is the destination BoofCV image wrapper or compatible Java object.Radius is the blur radius in pixels.Border is a BoofCV ImageBorder object or null for BoofCV defaults.The output image Java object returned by BoofCV.gaussian (object Input, object Output, double Sigma, int Radius)
Applies a Gaussian blur.
Input is the source BoofCV image wrapper or compatible Java object.Output is the destination BoofCV image wrapper or compatible Java object.Sigma is the Gaussian sigma. Use -1 to let BoofCV choose from Radius.Radius is the blur radius in pixels. Use -1 to let BoofCV choose from Sigma.The output image Java object returned by BoofCV.median (object Input, object Output, int Radius)
Applies a median blur.
Input is the source BoofCV image wrapper or compatible Java object.Output is the destination BoofCV image wrapper or compatible Java object.Radius is the blur radius in pixels.The output image Java object returned by BoofCV.[57:14] static extends: object
Static wrappers for boofcv.factory.filter.blur.FactoryBlurFilter.
mean (object ImageTypeValue, int Radius)
Creates a mean blur filter.
ImageTypeValue is an ImageType wrapper or compatible Java object.Radius is the blur radius in pixels.A BlurFilter wrapper.gaussian (object ImageTypeValue, double Sigma, int Radius)
Creates a Gaussian blur filter.
ImageTypeValue is an ImageType wrapper or compatible Java object.Sigma is the Gaussian sigma. Use -1 to let BoofCV choose from Radius.Radius is the blur radius in pixels. Use -1 to let BoofCV choose from Sigma.A BlurFilter wrapper.median (object ImageTypeValue, int Radius)
Creates a median blur filter.
ImageTypeValue is an ImageType wrapper or compatible Java object.Radius is the blur radius in pixels.A BlurFilter wrapper.[93:7] extends: object
BlurFilter wraps boofcv.abst.filter.blur.BlurFilter.
BlurFilter (object Obj)
Wraps a BoofCV BlurFilter object.
Obj is an existing BlurFilter Java object or wrapper.process (object Input, object Output)
Processes an input image into an output image.
Input is the source BoofCV image wrapper or compatible Java object.Output is the destination BoofCV image wrapper or compatible Java object.getRadius ()
Gets the blur radius.
The blur radius in pixels.setRadius (int Radius)
Sets the blur radius.
Radius is the blur radius in pixels.getImageType ()
Gets the input image type.
An ImageType Java object.getOutputType ()
Gets the output image type.
An ImageType Java object.
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.