  | EdgeBoxesCreate Method  | 
 
            Creates a EdgeBoxes
            
 
    Namespace: 
   OpenCvSharp.XImgProc
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntaxpublic static EdgeBoxes Create(
	float alpha = 0.65f,
	float beta = 0.75f,
	float eta = 1f,
	float minScore = 0.01f,
	int maxBoxes = 10000,
	float edgeMinMag = 0.1f,
	float edgeMergeThr = 0.5f,
	float clusterMinMag = 0.5f,
	float maxAspectRatio = 3f,
	float minBoxArea = 1000f,
	float gamma = 2f,
	float kappa = 1.5f
)
Public Shared Function Create ( 
	Optional alpha As Single = 0.65F,
	Optional beta As Single = 0.75F,
	Optional eta As Single = 1F,
	Optional minScore As Single = 0.01F,
	Optional maxBoxes As Integer = 10000,
	Optional edgeMinMag As Single = 0.1F,
	Optional edgeMergeThr As Single = 0.5F,
	Optional clusterMinMag As Single = 0.5F,
	Optional maxAspectRatio As Single = 3F,
	Optional minBoxArea As Single = 1000F,
	Optional gamma As Single = 2F,
	Optional kappa As Single = 1.5F
) As EdgeBoxes
public:
static EdgeBoxes^ Create(
	float alpha = 0.65f, 
	float beta = 0.75f, 
	float eta = 1f, 
	float minScore = 0.01f, 
	int maxBoxes = 10000, 
	float edgeMinMag = 0.1f, 
	float edgeMergeThr = 0.5f, 
	float clusterMinMag = 0.5f, 
	float maxAspectRatio = 3f, 
	float minBoxArea = 1000f, 
	float gamma = 2f, 
	float kappa = 1.5f
)
static member Create : 
        ?alpha : float32 * 
        ?beta : float32 * 
        ?eta : float32 * 
        ?minScore : float32 * 
        ?maxBoxes : int * 
        ?edgeMinMag : float32 * 
        ?edgeMergeThr : float32 * 
        ?clusterMinMag : float32 * 
        ?maxAspectRatio : float32 * 
        ?minBoxArea : float32 * 
        ?gamma : float32 * 
        ?kappa : float32 
(* Defaults:
        let _alpha = defaultArg alpha 0.65f
        let _beta = defaultArg beta 0.75f
        let _eta = defaultArg eta 1f
        let _minScore = defaultArg minScore 0.01f
        let _maxBoxes = defaultArg maxBoxes 10000
        let _edgeMinMag = defaultArg edgeMinMag 0.1f
        let _edgeMergeThr = defaultArg edgeMergeThr 0.5f
        let _clusterMinMag = defaultArg clusterMinMag 0.5f
        let _maxAspectRatio = defaultArg maxAspectRatio 3f
        let _minBoxArea = defaultArg minBoxArea 1000f
        let _gamma = defaultArg gamma 2f
        let _kappa = defaultArg kappa 1.5f
*)
-> EdgeBoxes 
Parameters
- alpha (Optional)
 - Type: SystemSingle
step size of sliding window search. - beta (Optional)
 - Type: SystemSingle
nms threshold for object proposals. - eta (Optional)
 - Type: SystemSingle
adaptation rate for nms threshold. - minScore (Optional)
 - Type: SystemSingle
min score of boxes to detect. - maxBoxes (Optional)
 - Type: SystemInt32
max number of boxes to detect. - edgeMinMag (Optional)
 - Type: SystemSingle
edge min magnitude. Increase to trade off accuracy for speed. - edgeMergeThr (Optional)
 - Type: SystemSingle
edge merge threshold. Increase to trade off accuracy for speed. - clusterMinMag (Optional)
 - Type: SystemSingle
cluster min magnitude. Increase to trade off accuracy for speed. - maxAspectRatio (Optional)
 - Type: SystemSingle
max aspect ratio of boxes. - minBoxArea (Optional)
 - Type: SystemSingle
minimum area of boxes. - gamma (Optional)
 - Type: SystemSingle
affinity sensitivity. - kappa (Optional)
 - Type: SystemSingle
scale sensitivity. 
Return Value
Type: 
EdgeBoxes[Missing <returns> documentation for "M:OpenCvSharp.XImgProc.EdgeBoxes.Create(System.Single,System.Single,System.Single,System.Single,System.Int32,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)"]
See Also