Table of Contents

Method Create

Namespace
OpenCvSharp.XImgProc
Assembly
OpenCvSharp.dll

Create(float, float, float, float, int, float, float, float, float, float, float, float)

Creates a EdgeBoxes

public static EdgeBoxes Create(float alpha = 0.65, float beta = 0.75, float eta = 1, float minScore = 0.01, int maxBoxes = 10000, float edgeMinMag = 0.1, float edgeMergeThr = 0.5, float clusterMinMag = 0.5, float maxAspectRatio = 3, float minBoxArea = 1000, float gamma = 2, float kappa = 1.5)

Parameters

alpha float

step size of sliding window search.

beta float

nms threshold for object proposals.

eta float

adaptation rate for nms threshold.

minScore float

min score of boxes to detect.

maxBoxes int

max number of boxes to detect.

edgeMinMag float

edge min magnitude. Increase to trade off accuracy for speed.

edgeMergeThr float

edge merge threshold. Increase to trade off accuracy for speed.

clusterMinMag float

cluster min magnitude. Increase to trade off accuracy for speed.

maxAspectRatio float

max aspect ratio of boxes.

minBoxArea float

minimum area of boxes.

gamma float

affinity sensitivity.

kappa float

scale sensitivity.

Returns

EdgeBoxes