Home
last modified time | relevance | path

Searched refs:croppedSize (Results 1 – 1 of 1) sorted by relevance

/test/mlts/benchmark/src/com/android/nn/benchmark/imageprocessors/
DInception.java28 int croppedSize = (int)(0.875f * Math.min(origBitmap.getWidth(), origBitmap.getHeight())); in preprocess() local
29 int x = origBitmap.getWidth() / 2 - croppedSize / 2; in preprocess()
30 int y = origBitmap.getHeight() / 2 - croppedSize / 2; in preprocess()
32 Bitmap centeredBitmap = Bitmap.createBitmap(origBitmap, x, y, croppedSize, croppedSize); in preprocess()