Home | History | Annotate | Download | only in gesture

Lines Matching refs:bitmapSize

68      * @param bitmapSize the size of the bitmap
69 * @return a bitmapSize x bitmapSize grayscale bitmap that is represented
71 * value at pixel [i%bitmapSize, i/bitmapSize]
73 public static float[] spatialSampling(Gesture gesture, int bitmapSize) {
74 return spatialSampling(gesture, bitmapSize, false);
82 * @param bitmapSize the size of the bitmap
86 * @return a bitmapSize x bitmapSize grayscale bitmap that is represented
88 * value at pixel [i%bitmapSize, i/bitmapSize]
90 public static float[] spatialSampling(Gesture gesture, int bitmapSize,
92 final float targetPatchSize = bitmapSize - 1;
93 float[] sample = new float[bitmapSize * bitmapSize];
159 plot(segmentStartX, segmentStartY, sample, bitmapSize);
168 plot(xpos, ypos, sample, bitmapSize);
177 plot(xpos, ypos, sample, bitmapSize);
188 plot(xpos, ypos, sample, bitmapSize);
197 plot(xpos, ypos, sample, bitmapSize);