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

  /external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
OvicDetectorBenchmarker.java 66 imgHeight = inputDims[1];
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);
149 scaleFactorHeight = originalHeight * 1.0 / imgHeight;
150 scaledBitmap.getPixels(intValues, 0, imgWidth, 0, 0, imgWidth, imgHeight);
OvicClassifierBenchmarker.java 58 imgHeight = inputDims[1];
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 47 protected int imgHeight = 224;
135 for (int i = 0; i < imgHeight; ++i) {
OvicValidator.java 80 private static ByteBuffer createByteBuffer(int imgWidth, int imgHeight) {
81 ByteBuffer imgData = ByteBuffer.allocateDirect(imgHeight * imgWidth * 3);
84 for (int y = 0; y < imgHeight; y++) {
  /external/freetype/src/sfnt/
pngshim.c 264 png_uint_32 imgWidth, imgHeight;
318 &imgWidth, &imgHeight,
325 (FT_Int)imgHeight != metrics->height ) ) )
331 metrics->height = (FT_UShort)imgHeight;
384 &imgWidth, &imgHeight,
425 if ( FT_NEW_ARRAY( rows, imgHeight ) )
431 for ( i = 0; i < (FT_Int)imgHeight; i++ )
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java     [all...]

Completed in 132 milliseconds