Click or drag to resize

CvXImgProcCreateEdgeBoxes Method

Creates a EdgeBoxes

Namespace:  OpenCvSharp.XImgProc
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static EdgeBoxes CreateEdgeBoxes(
	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
)

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.CvXImgProc.CreateEdgeBoxes(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