Lines Matching refs:h
341 int h = mConfiguredSize.getHeight() / SCALE_FACTOR; in updateImage() local
350 int[] imgArray = new int[w * h]; in updateImage()
351 for (int y = 0, j = 0, rowStart = 0, uRowStart = 0, vRowStart = 0; y < h; in updateImage()
373 imgBitmap = Bitmap.createBitmap(imgArray, w, h, Bitmap.Config.ARGB_8888); in updateImage()
381 int h = mConfiguredSize.getHeight() / SCALE_FACTOR; in updateImage() local
384 int[] imgArray = new int[w * h]; in updateImage()
385 for (int y = 0, j = 0; y < h; y++) { in updateImage()
401 imgBitmap = Bitmap.createBitmap(imgArray, w, h, Bitmap.Config.ARGB_8888); in updateImage()
413 int h = img.getHeight(); in updateImage() local
417 imgBitmap = convertDepthToFalseColor(y16Buffer, w, h, stride, SCALE_FACTOR); in updateImage()
432 private Bitmap convertDepthToFalseColor(ShortBuffer depthBuffer, int w, int h, in convertDepthToFalseColor() argument
435 int[] imgArray = new int[w * h]; in convertDepthToFalseColor()
437 h = h / scale; in convertDepthToFalseColor()
439 for (int y = 0, j = 0, rowStart = 0; y < h; y++, rowStart += stride) { in convertDepthToFalseColor()
450 return Bitmap.createBitmap(imgArray, w, h, Bitmap.Config.ARGB_8888); in convertDepthToFalseColor()
700 int h = img.getHeight(); in writeDepth16Image() local
704 Bitmap rgbImage = convertDepthToFalseColor(y16Data, w, h, rowStride, /*scale*/ 1); in writeDepth16Image()