Basics
Guides
API Reference
Basics
Guides
API Reference
[7:14] static extends: object
Static wrappers for boofcv.factory.feature.detect.edge.FactoryEdgeDetectors.
canny (int BlurRadius, bool SaveTrace, bool DynamicThreshold, string ImageClassName, string DerivativeClassName)
Creates a Canny edge detector.
BlurRadius is the Gaussian blur radius.SaveTrace true saves edge contours.DynamicThreshold true enables dynamic thresholds.ImageClassName is an input gray image class name or short image name.DerivativeClassName is a derivative gray image class name or short image name.A CannyEdge wrapper.[27:7] extends: object
CannyEdge wraps boofcv.alg.feature.detect.edge.CannyEdge.
CannyEdge (object Obj)
Wraps a BoofCV CannyEdge.
Obj is an existing CannyEdge Java object or wrapper.process (object Image, ThreshLow, ThreshHigh, object BinaryEdges)
Processes an image into a binary edge image.
Image is the input gray image.ThreshLow is the low threshold.ThreshHigh is the high threshold.BinaryEdges is a GrayU8 output image or null.getContours ()
Gets saved edge contours.
A Java list of EdgeContour objects when SaveTrace was true.
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.