Searched refs:box_h (Results 1 – 5 of 5) sorted by relevance
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/base/ |
D | prior_box.cc | 123 float box_h = min_size / as_square_root; in GeneratePriorBox() local 125 output_.emplace_back((cy - box_h / step_h * 0.5f) / fmap_h); in GeneratePriorBox() 127 output_.emplace_back((cy + box_h / step_h * 0.5f) / fmap_h); in GeneratePriorBox()
|
/third_party/mesa3d/src/gallium/frontends/va/ |
D | image.c | 531 unsigned box_h = align(height, 2); in vlVaGetImage() local 535 vl_video_buffer_adjust_size(&box_w, &box_h, i, in vlVaGetImage() 542 struct pipe_box box = {box_x, box_y, j, box_w, box_h, 1}; in vlVaGetImage()
|
/third_party/mindspore/tests/st/model_zoo_tests/yolov3/src/ |
D | dataset.py | 181 box_h = t_box[:, 3] - t_box[:, 1] 182 t_box = t_box[np.logical_and(box_w > 1, box_h > 1)] # discard invalid box
|
/third_party/ffmpeg/libavfilter/ |
D | vf_drawtext.c | 1295 int box_w, box_h; in draw_text() local 1455 box_h = y + s->max_glyph_h; in draw_text() 1479 if (s->y + box_h + offsetbottom > height) in draw_text() 1480 s->y = FFMAX(height - box_h - offsetbottom, 0); in draw_text() 1488 box_w + s->boxborderw * 2, box_h + s->boxborderw * 2); in draw_text()
|
/third_party/mindspore/tests/st/model_zoo_tests/yolov3_darknet53/src/ |
D | transforms.py | 359 box_h = t_box[:, 3] - t_box[:, 1] 361 t_box = t_box[np.logical_and(box_w > 1, box_h > 1)]
|