class: FactoryEdgeDetectors
[23:14] static extends: object
Static wrappers for boofcv.factory.feature.detect.edge.FactoryEdgeDetectors.
Methods
-
canny (
int BlurRadius, bool SaveTrace, bool DynamicThreshold, string ImageClassName, string DerivativeClassName)Creates a Canny edge detector.
- @p
BlurRadiusis the Gaussian blur radius. - @p
SaveTracetrue saves edge contours. - @p
DynamicThresholdtrue enables dynamic thresholds. - @p
ImageClassNameis an input gray image class name or short image name. - @p
DerivativeClassNameis a derivative gray image class name or short image name. - @r
ACannyEdge wrapper.
- @p
class: CannyEdge
[43:7] extends: object
CannyEdge wraps boofcv.alg.feature.detect.edge.CannyEdge.
Members
- obj
Methods
-
CannyEdge (
object Obj)Wraps a BoofCV CannyEdge.
- @p
Objis an existing CannyEdge Java object or wrapper.
- @p
-
process (
object Image, ThreshLow, ThreshHigh, object BinaryEdges)Processes an image into a binary edge image.
- @p
Imageis the input gray image. - @p
ThreshLowis the low threshold. - @p
ThreshHighis the high threshold. - @p
BinaryEdgesis a GrayU8 output image or null.
- @p
-
getContours ()
Gets saved edge contours.
- @r
AJava list of EdgeContour objects when SaveTrace was true.
- @r