Click or drag to resize

EdgeBoxes Constructor

http://www.emgu.com
Create an EdgeBox

Namespace:  Emgu.CV.XImgproc
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public EdgeBoxes(
	float alpha = 0.65f,
	float beta = 0.75f,
	float eta = 1f,
	float minScore = 0.01f,
	int maxBoxes = 10000,
	float edgeMinMag = 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.
See Also