Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/kernels/
Ddetection_postprocess.cc194 TfLiteTensor* decoded_boxes = &context->tensors[op_data->decoded_boxes_index]; in Prepare() local
195 decoded_boxes->type = kTfLiteFloat32; in Prepare()
196 decoded_boxes->allocation_type = kTfLiteArenaRw; in Prepare()
197 SetTensorSizes(context, decoded_boxes, in Prepare()
307 TfLiteTensor* decoded_boxes = in DecodeCenterSizeBoxes() local
309 auto& box = ReInterpretTensor<BoxCornerEncoding*>(decoded_boxes)[idx]; in DecodeCenterSizeBoxes()
338 bool ValidateBoxes(const TfLiteTensor* decoded_boxes, const int num_boxes) { in ValidateBoxes() argument
341 auto& box = ReInterpretTensor<const BoxCornerEncoding*>(decoded_boxes)[i]; in ValidateBoxes()
349 float ComputeIntersectionOverUnion(const TfLiteTensor* decoded_boxes, in ComputeIntersectionOverUnion() argument
351 auto& box_i = ReInterpretTensor<const BoxCornerEncoding*>(decoded_boxes)[i]; in ComputeIntersectionOverUnion()
[all …]