HomeSort by relevance Sort by last modified time
    Searched full:kerneldata (Results 1 - 1 of 1) sorted by null

  /sdk/assetstudio/src/com/android/assetstudiolib/
Util.java 101 final float[] kernelData = new float[rows * rows];
117 kernelData[index] = 0;
119 kernelData[index] = (float) (Math.exp(-distance2 / sigma22) / sqrtPiSigma22);
121 total += kernelData[index];
126 for (index = 0; index < kernelData.length; index++) {
127 kernelData[index] /= total;
133 new Kernel(rows, rows, kernelData), ConvolveOp.EDGE_ZERO_FILL, null));

Completed in 1319 milliseconds