Lines Matching refs:imageInfoDataShape
63 const float* imageInfoData, const Shape& imageInfoDataShape, in bboxTransformFloat32() argument
69 uint32_t numBatches = getSizeOfDimension(imageInfoDataShape, 0); in bboxTransformFloat32()
113 const _Float16* imageInfoData, const Shape& imageInfoDataShape, in bboxTransformFloat16() argument
119 std::vector<float> imageInfo_float32(getNumberOfElements(imageInfoDataShape)); in bboxTransformFloat16()
124 imageInfo_float32.data(), imageInfoDataShape, in bboxTransformFloat16()
133 const uint16_t* imageInfoData, const Shape& imageInfoDataShape, in bboxTransformQuant() argument
140 std::vector<float> imageInfo_float32(getNumberOfElements(imageInfoDataShape)); in bboxTransformQuant()
141 convertQuantToFloat32(imageInfoData, imageInfoDataShape.scale, imageInfoDataShape.offset, in bboxTransformQuant()
146 imageInfo_float32.data(), imageInfoDataShape, in bboxTransformQuant()
155 const uint16_t* imageInfoData, const Shape& imageInfoDataShape, in bboxTransformQuant() argument
162 std::vector<float> imageInfo_float32(getNumberOfElements(imageInfoDataShape)); in bboxTransformQuant()
163 convertQuantToFloat32(imageInfoData, imageInfoDataShape.scale, imageInfoDataShape.offset, in bboxTransformQuant()
168 imageInfo_float32.data(), imageInfoDataShape, in bboxTransformQuant()
1294 Shape imageInfoDataShape = context->getInputShape(kImageInfoTensor); in prepare() local
1302 NN_RET_CHECK_EQ(getNumberOfDimensions(imageInfoDataShape), 2); in prepare()
1314 NN_RET_CHECK_EQ(getSizeOfDimension(imageInfoDataShape, 0), numBatches); in prepare()
1315 NN_RET_CHECK_EQ(getSizeOfDimension(imageInfoDataShape, 1), 2); in prepare()
1321 NN_RET_CHECK_EQ(imageInfoDataShape.scale, 0.125f); in prepare()
1322 NN_RET_CHECK_EQ(imageInfoDataShape.offset, 0); in prepare()