Home
last modified time | relevance | path

Searched refs:box_w (Results 1 – 5 of 5) sorted by relevance

/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/base/
Dprior_box.cc122 float box_w = min_size * as_square_root; in GeneratePriorBox() local
124 output_.emplace_back((cx - box_w / step_w * 0.5f) / fmap_w); in GeneratePriorBox()
126 output_.emplace_back((cx + box_w / step_w * 0.5f) / fmap_w); in GeneratePriorBox()
/third_party/mesa3d/src/gallium/frontends/va/
Dimage.c530 unsigned box_w = align(width, 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/
Ddataset.py180 box_w = t_box[:, 2] - t_box[:, 0]
182 t_box = t_box[np.logical_and(box_w > 1, box_h > 1)] # discard invalid box
/third_party/ffmpeg/libavfilter/
Dvf_drawtext.c1295 int box_w, box_h; in draw_text() local
1454 box_w = max_text_line_w; in draw_text()
1477 if (s->x + box_w + offsetright > width) in draw_text()
1478 s->x = FFMAX(width - box_w - offsetright, 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/
Dtransforms.py358 box_w = t_box[:, 2] - t_box[:, 0]
361 t_box = t_box[np.logical_and(box_w > 1, box_h > 1)]