Home
last modified time | relevance | path

Searched refs:anchors_per_grid (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/dnn_objdetect/src/
H A Dcore_detect.cpp25 anchors_per_grid = 9; in InferBbox()
26 anchors = W * H * anchors_per_grid; in InferBbox()
43 for (size_t i = 0; i < anchors_per_grid; ++i) in InferBbox()
63 if ((anchor+1) % anchors_per_grid == 0) in InferBbox()
137 for (unsigned int anchor = 0; anchor < anchors_per_grid; ++anchor) in transform_bboxes()
139 const int anchor_idx = (h * W + w) * anchors_per_grid + anchor; in transform_bboxes()
165 for (unsigned int ch = 0; ch < anchors_per_grid * num_classes; ++ch) in final_probability_dist()
168 (h * W + w) * anchors_per_grid + ch / num_classes; in final_probability_dist()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/dnn_objdetect/samples/data/
H A DSqueezeDet_train_test.prototxt1120 slice_point: 180 # anchors_per_grid * classes_
1121 slice_point: 189 # anchors_per_grid * (classes_ + 1)
1132 dim: 4761 # H*W*anchors_per_grid
1163 anchors_per_grid: 9
H A DSqueezeDet_deploy.prototxt1084 slice_point: 180 # anchors_per_grid * classes_
1085 slice_point: 189 # anchors_per_grid * (classes_ + 1)
1096 dim: 4761 # H*W*anchors_per_grid
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/dnn_objdetect/include/opencv2/
H A Dcore_detect.hpp137 unsigned int anchors_per_grid; member in cv::dnn_objdetect::InferBbox