Home
last modified time | relevance | path

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

/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DRawConverter.java729 double det = a00 * t00 + a01 * t10 + a02 * t20; in invert() local
730 if (Math.abs(det) < 1e-9) { in invert()
734 output[0] = (float) (t00 / det); in invert()
735 output[1] = (float) (t01 / det); in invert()
736 output[2] = (float) (t02 / det); in invert()
737 output[3] = (float) (t10 / det); in invert()
738 output[4] = (float) (t11 / det); in invert()
739 output[5] = (float) (t12 / det); in invert()
740 output[6] = (float) (t20 / det); in invert()
741 output[7] = (float) (t21 / det); in invert()
[all …]