class: GBlurImageOps
[22:14] static extends: object
Static wrappers for boofcv.alg.filter.blur.GBlurImageOps.
Methods
-
mean (
object Input, object Output, int Radius)Applies a mean blur.
- @p
Inputis the source BoofCV image wrapper or compatible Java object. - @p
Outputis the destination BoofCV image wrapper or compatible Java object. - @p
Radiusis the blur radius in pixels. - @r
Theoutput image Java object returned by BoofCV.
- @p
-
meanB (
object Input, object Output, int Radius, Border = null)Applies a mean blur with a border policy.
- @p
Inputis the source BoofCV image wrapper or compatible Java object. - @p
Outputis the destination BoofCV image wrapper or compatible Java object. - @p
Radiusis the blur radius in pixels. - @p
Borderis a BoofCV ImageBorder object or null for BoofCV defaults. - @r
Theoutput image Java object returned by BoofCV.
- @p
-
gaussian (
object Input, object Output, double Sigma, int Radius)Applies a Gaussian blur.
- @p
Inputis the source BoofCV image wrapper or compatible Java object. - @p
Outputis the destination BoofCV image wrapper or compatible Java object. - @p
Sigmais the Gaussian sigma. Use -1 to let BoofCV choose from Radius. - @p
Radiusis the blur radius in pixels. Use -1 to let BoofCV choose from Sigma. - @r
Theoutput image Java object returned by BoofCV.
- @p
-
median (
object Input, object Output, int Radius)Applies a median blur.
- @p
Inputis the source BoofCV image wrapper or compatible Java object. - @p
Outputis the destination BoofCV image wrapper or compatible Java object. - @p
Radiusis the blur radius in pixels. - @r
Theoutput image Java object returned by BoofCV.
- @p
class: FactoryBlurFilter
[73:14] static extends: object
Static wrappers for boofcv.factory.filter.blur.FactoryBlurFilter.
Methods
-
mean (
object ImageTypeValue, int Radius)Creates a mean blur filter.
- @p
ImageTypeValueis an ImageType wrapper or compatible Java object. - @p
Radiusis the blur radius in pixels. - @r
ABlurFilter wrapper.
- @p
-
gaussian (
object ImageTypeValue, double Sigma, int Radius)Creates a Gaussian blur filter.
- @p
ImageTypeValueis an ImageType wrapper or compatible Java object. - @p
Sigmais the Gaussian sigma. Use -1 to let BoofCV choose from Radius. - @p
Radiusis the blur radius in pixels. Use -1 to let BoofCV choose from Sigma. - @r
ABlurFilter wrapper.
- @p
-
median (
object ImageTypeValue, int Radius)Creates a median blur filter.
- @p
ImageTypeValueis an ImageType wrapper or compatible Java object. - @p
Radiusis the blur radius in pixels. - @r
ABlurFilter wrapper.
- @p
class: BlurFilter
[109:7] extends: object
BlurFilter wraps boofcv.abst.filter.blur.BlurFilter.
Members
- obj
Methods
-
BlurFilter (
object Obj)Wraps a BoofCV BlurFilter object.
- @p
Objis an existing BlurFilter Java object or wrapper.
- @p
-
process (
object Input, object Output)Processes an input image into an output image.
- @p
Inputis the source BoofCV image wrapper or compatible Java object. - @p
Outputis the destination BoofCV image wrapper or compatible Java object.
- @p
-
getRadius ()
Gets the blur radius.
- @r
Theblur radius in pixels.
- @r
-
setRadius (
int Radius)Sets the blur radius.
- @p
Radiusis the blur radius in pixels.
- @p
-
getImageType ()
Gets the input image type.
- @r
AnImageType Java object.
- @r
-
getOutputType ()
Gets the output image type.
- @r
AnImageType Java object.
- @r