OpenCV453
クラス | 型定義 | 関数
Ximgproc_edgeboxes

クラス

struct  cv::ximgproc::Box
 
class  cv::ximgproc::EdgeBoxes
 Class implementing EdgeBoxes algorithm from [ZitnickECCV14edgeBoxes] : [詳解]
 

型定義

typedef std::vector< Boxcv::ximgproc::Boxes
 

関数

CV_EXPORTS_W Ptr< EdgeBoxescv::ximgproc::createEdgeBoxes (float alpha=0.65f, float beta=0.75f, float eta=1, float minScore=0.01f, int maxBoxes=10000, float edgeMinMag=0.1f, float edgeMergeThr=0.5f, float clusterMinMag=0.5f, float maxAspectRatio=3, float minBoxArea=1000, float gamma=2, float kappa=1.5f)
 Creates a Edgeboxes [詳解]
 

詳解

関数詳解

◆ createEdgeBoxes()

CV_EXPORTS_W Ptr< EdgeBoxes > cv::ximgproc::createEdgeBoxes ( float  alpha = 0.65f,
float  beta = 0.75f,
float  eta = 1,
float  minScore = 0.01f,
int  maxBoxes = 10000,
float  edgeMinMag = 0.1f,
float  edgeMergeThr = 0.5f,
float  clusterMinMag = 0.5f,
float  maxAspectRatio = 3,
float  minBoxArea = 1000,
float  gamma = 2,
float  kappa = 1.5f 
)

Creates a Edgeboxes

引数
alphastep size of sliding window search.
betanms threshold for object proposals.
etaadaptation rate for nms threshold.
minScoremin score of boxes to detect.
maxBoxesmax number of boxes to detect.
edgeMinMagedge min magnitude. Increase to trade off accuracy for speed.
edgeMergeThredge merge threshold. Increase to trade off accuracy for speed.
clusterMinMagcluster min magnitude. Increase to trade off accuracy for speed.
maxAspectRatiomax aspect ratio of boxes.
minBoxAreaminimum area of boxes.
gammaaffinity sensitivity.
kappascale sensitivity.