| CvXImgProcCreateStructuredEdgeDetection Method |
Creates a StructuredEdgeDetection
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static StructuredEdgeDetection CreateStructuredEdgeDetection(
string model,
RFFeatureGetter howToGetFeatures = null
)
Public Shared Function CreateStructuredEdgeDetection (
model As String,
Optional howToGetFeatures As RFFeatureGetter = Nothing
) As StructuredEdgeDetection
public:
static StructuredEdgeDetection^ CreateStructuredEdgeDetection(
String^ model,
RFFeatureGetter^ howToGetFeatures = nullptr
)
static member CreateStructuredEdgeDetection :
model : string *
?howToGetFeatures : RFFeatureGetter
(* Defaults:
let _howToGetFeatures = defaultArg howToGetFeatures null
*)
-> StructuredEdgeDetection
Parameters
- model
- Type: SystemString
name of the file where the model is stored - howToGetFeatures (Optional)
- Type: OpenCvSharp.XImgProcRFFeatureGetter
optional object inheriting from RFFeatureGetter.
You need it only if you would like to train your own forest, pass null otherwise
Return Value
Type:
StructuredEdgeDetection[Missing <returns> documentation for "M:OpenCvSharp.XImgProc.CvXImgProc.CreateStructuredEdgeDetection(System.String,OpenCvSharp.XImgProc.RFFeatureGetter)"]
See Also