Searched refs:resizeFactor (Results 1 – 3 of 3) sorted by relevance
31 const double resizeFactor = longEdgeOutput/longEdgeInput; in Decode() local58 topLeftY *= resizeFactor; in Decode()59 topLeftX *= resizeFactor; in Decode()60 botRightY *= resizeFactor; in Decode()61 botRightX *= resizeFactor; in Decode()
31 const float resizeFactor = longEdgeOutput/longEdgeInput; in Decode() local56 float topLeftX = cur_box[0] * resizeFactor; in Decode()57 float topLeftY = cur_box[1] * resizeFactor; in Decode()58 float botRightX = cur_box[2] * resizeFactor; in Decode()59 float botRightY = cur_box[3] * resizeFactor; in Decode()
95 const double resizeFactor = longEdgeOutput/longEdgeInput; in ResizeFrame() local96 cv::resize(frame, dest, cv::Size(0, 0), resizeFactor, resizeFactor, DefaultResizeFlag); in ResizeFrame()