StructuredEdgeDetection Constructor |
http://www.emgu.com
Create an edge detection algorithm.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic StructuredEdgeDetection(
string model,
RFFeatureGetter howToGetFeatures
)
Public Sub New (
model As String,
howToGetFeatures As RFFeatureGetter
)
public:
StructuredEdgeDetection(
String^ model,
RFFeatureGetter^ howToGetFeatures
)
new :
model : string *
howToGetFeatures : RFFeatureGetter -> StructuredEdgeDetection
Parameters
- model
- Type: SystemString
name of the file where the model is stored - howToGetFeatures
- Type: Emgu.CV.XImgprocRFFeatureGetter
optional object inheriting from RFFeatureGetter. You need it only if you would like to train your own forest, pass NULL otherwise
See Also