HomeSort by relevance Sort by last modified time
    Searched refs:imgWidth (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
OvicDetectorBenchmarker.java 67 imgWidth = inputDims[2];
68 imgData = ByteBuffer.allocateDirect(DIM_BATCH_SIZE * imgHeight * imgWidth * DIM_PIXEL_SIZE);
70 intValues = new int[imgHeight * imgWidth];
147 scaledBitmap = Bitmap.createScaledBitmap(bitmap, imgWidth, imgHeight, true);
148 scaleFactorWidth = originalWidth * 1.0 / imgWidth;
150 scaledBitmap.getPixels(intValues, 0, imgWidth, 0, 0, imgWidth, imgHeight);
OvicClassifierBenchmarker.java 59 imgWidth = inputDims[2];
61 imgData = ByteBuffer.allocateDirect(DIM_BATCH_SIZE * imgHeight * imgWidth * DIM_PIXEL_SIZE);
63 intValues = new int[imgHeight * imgWidth];
137 bitmap = Bitmap.createScaledBitmap(bitmap, imgWidth, imgHeight, true);
OvicBenchmarker.java 48 protected int imgWidth = 224;
136 for (int j = 0; j < imgWidth; ++j) {
OvicValidator.java 80 private static ByteBuffer createByteBuffer(int imgWidth, int imgHeight) {
81 ByteBuffer imgData = ByteBuffer.allocateDirect(imgHeight * imgWidth * 3);
85 for (int x = 0; x < imgWidth; x++) {
  /external/freetype/src/sfnt/
pngshim.c 264 png_uint_32 imgWidth, imgHeight;
318 &imgWidth, &imgHeight,
324 ( (FT_Int)imgWidth != metrics->width ||
330 metrics->width = (FT_UShort)imgWidth;
384 &imgWidth, &imgHeight,
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]

Completed in 91 milliseconds