Home
last modified time | relevance | path

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

/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dframe_buffer_utils.cc133 static void RotateCoordinates(int from_x, int from_y, int angle, in RotateCoordinates() argument
139 *to_y = from_y; in RotateCoordinates()
142 *to_x = from_y; in RotateCoordinates()
147 *to_y = frame_dimension.height - from_y - 1; in RotateCoordinates()
150 *to_x = frame_dimension.height - from_y - 1; in RotateCoordinates()
217 void OrientCoordinates(int from_x, int from_y, in OrientCoordinates() argument
223 *to_y = from_y; in OrientCoordinates()
227 RotateCoordinates(from_x, from_y, params.rotation_angle_deg, from_dimension, in OrientCoordinates()
Dframe_buffer_utils.h56 void OrientCoordinates(int from_x, int from_y,
/external/python/cpython2/Demo/curses/
Dtclock.py24 def dline(pair, from_x, from_y, x2, y2, ch): argument
29 dy = y2 - from_y
38 y = from_y
/external/tensorflow/tensorflow/python/ops/
Dnn_batchnorm_test.py557 def _testGlobalGradient(self, from_y="mean"): argument
571 if from_y == "mean":
573 elif from_y == "var":
580 print("Moments %s gradient err vs input %d = %g" % (from_y, i, err))
585 self._testGlobalGradient(from_y="mean")
589 self._testGlobalGradient(from_y="var")