Home | History | Annotate | Download | only in rscpp

Lines Matching refs:coeffs

34     native boolean colorMatrixTest(String path, int X, int Y, byte[] input, byte[] output, float[] coeffs, int optionFlag);
43 float[] coeffs = new float[9];
44 coeffs[0] = 1.f;
45 coeffs[1] = 0.3f;
46 coeffs[2] = 0.7f;
47 coeffs[3] = 0.2f;
48 coeffs[4] = 1.f;
49 coeffs[5] = -0.1f;
50 coeffs[6] = -0.5f;
51 coeffs[7] = 0.2f;
52 coeffs[8] = 1.f;
62 Matrix3f mat = new Matrix3f(coeffs);
67 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 0);
83 float[] coeffs = new float[9];
97 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 1);
114 float[] coeffs = new float[16];
116 coeffs[i] = -2.f + .25f*i;
127 Matrix4f mat = new Matrix4f(coeffs);
132 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 2);
149 float[] coeffs = new float[9];
163 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 3);
180 float[] coeffs = new float[9];
194 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 4);