Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc234 CenterSizeEncoding* box_centersize) { in DequantizeBoxEncodings() argument
238 box_centersize->y = dequantize(boxes[0]); in DequantizeBoxEncodings()
239 box_centersize->x = dequantize(boxes[1]); in DequantizeBoxEncodings()
240 box_centersize->h = dequantize(boxes[2]); in DequantizeBoxEncodings()
241 box_centersize->w = dequantize(boxes[3]); in DequantizeBoxEncodings()
270 CenterSizeEncoding box_centersize; in DecodeCenterSizeBoxes() local
281 &box_centersize); in DecodeCenterSizeBoxes()
289 box_centersize = ReInterpretTensor<const CenterSizeEncoding*>( in DecodeCenterSizeBoxes()
299 float ycenter = box_centersize.y / scale_values.y * anchor.h + anchor.y; in DecodeCenterSizeBoxes()
300 float xcenter = box_centersize.x / scale_values.x * anchor.w + anchor.x; in DecodeCenterSizeBoxes()
[all …]