public byte[] decodeBMPToYUV422(Bitmap bmp) { int width = bmp.getWidth(); int height = bmp.getHeight(); boolean needUpdateAllocation = false; if (mOriginHeight2 != height || mOriginWidth2 != width) { mOriginWidth2 = width; mOriginHeight2 = height; needUpdateAllocation = true; } Type.Builder tbIn = new Type.Builder(mRS, Element.RGBA_8888(mRS)); tbIn.setX(width).setY(height); // tbIn.setX(nv21.length); Type.Builder tbOut = new Type.Builder(mRS, Element.U8(mRS)); tbOut.setX(width * height + width * height / 2); // if(mInAlloc2==null){ // mInAlloc2=Allocation.createTyped(mRS, tbIn.create(),Allocation.USAGE_SCRIPT); // } if (mOutAlloc2 == null || needUpdateAllocation) { mOutAlloc2 = Allocation.createTyped(mRS, tbOut.create(), Allocation.USAGE_SCRIPT); } mInAlloc2 = Allocation.createFromBitmap(mRS, bmp); mScript.bind_bmpInput(mInAlloc2); mScript.bind_yuvOutput(mOutAlloc2); // // mScript.bind_input(mInAlloc2); // mScript.bind_output(mOutAlloc2); mScript.set_mImageWidth(width); mScript.set_mImageHeight(height); int[] indexBuffer = new int[height]; for (int i = 0; i < indexBuffer.length; i++) { indexBuffer[i] = i; } Type.Builder tbIndex = new Type.Builder(mRS, Element.I32(mRS)); tbIndex.setX(indexBuffer.length); if (mIndexAlloc2 == null || needUpdateAllocation) { mIndexAlloc2 = Allocation.createTyped(mRS, tbIndex.create()); mOriginHeight2 = height; } mIndexAlloc2.copyFrom(indexBuffer); mScript.forEach_process_jpg2yuv(mIndexAlloc2); if (mOutput2 == null || needUpdateAllocation) { mOutputLength2 = width * height + width * height / 2; mOutput2 = new byte[mOutputLength2]; } mOutAlloc2.copyTo(mOutput2); return mOutput2; }
private void initializeGlobals(RenderScript RS, ScriptC_kernel s) { Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS)); int X = 5; s.set_dimX(X); typeBuilder.setX(X); A = Allocation.createTyped(RS, typeBuilder.create()); s.bind_ain(A); B = Allocation.createTyped(RS, typeBuilder.create()); s.bind_aout(B); return; }
Processor(RenderScript rs, TextureView v, boolean benchmarkMode) { mRS = rs; mDisplayView = v; switch (mBitmapWidth) { case 3840: mInPixelsAllocation = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img3840x2160a); mInPixelsAllocation2 = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img3840x2160b); break; case 1920: mInPixelsAllocation = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img1920x1080a); mInPixelsAllocation2 = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img1920x1080b); break; case 1280: mInPixelsAllocation = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img1280x720a); mInPixelsAllocation2 = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img1280x720b); break; case 800: mInPixelsAllocation = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img800x450a); mInPixelsAllocation2 = Allocation.createFromBitmapResource(mRS, getResources(), R.drawable.img800x450b); break; } mOutDisplayAllocation = Allocation.createTyped( mRS, mInPixelsAllocation.getType(), Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT | Allocation.USAGE_IO_OUTPUT); mOutPixelsAllocation = mOutDisplayAllocation; if (!mToggleIO) { // Not using USAGE_IO for the script so create a non-io kernel to copy from mOutPixelsAllocation = Allocation.createTyped( mRS, mInPixelsAllocation.getType(), Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); } mBenchmarkMode = benchmarkMode; start(); }
public boolean prepareRenderscriptAllocations(Bitmap bitmap) { RenderScript RS = getRenderScriptContext(); boolean needsUpdate = false; if (mOutPixelsAllocation == null || mInPixelsAllocation == null || bitmap.getWidth() != mWidth || bitmap.getHeight() != mHeight) { destroyPixelAllocations(); Bitmap bitmapBuffer = bitmap; if (bitmap.getConfig() == null || bitmap.getConfig() != BITMAP_CONFIG) { bitmapBuffer = bitmap.copy(BITMAP_CONFIG, true); } mOutPixelsAllocation = Allocation.createFromBitmap( RS, bitmapBuffer, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); mInPixelsAllocation = Allocation.createTyped(RS, mOutPixelsAllocation.getType()); needsUpdate = true; } if (RS != null) { mInPixelsAllocation.copyFrom(bitmap); } if (bitmap.getWidth() != mWidth || bitmap.getHeight() != mHeight) { mWidth = bitmap.getWidth(); mHeight = bitmap.getHeight(); needsUpdate = true; } if (DEBUG) { Log.v(LOGTAG, "prepareRenderscriptAllocations: " + needsUpdate + " in " + getName()); } return needsUpdate; }
public void test_AllocationPadded_Byte3_3D() { Random random = new Random(0x172d8ab9); int w = random.nextInt(32); int h = random.nextInt(32); int d = random.nextInt(32); int arr_len = w * d * h * 3; byte[] inArray = new byte[arr_len]; byte[] outArray = new byte[arr_len]; random.nextBytes(inArray); Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS)); typeBuilder.setX(w).setY(h).setZ(d); Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create()); alloc.setAutoPadding(true); alloc.copyFrom(inArray); alloc.copyTo(outArray); boolean result = true; for (int i = 0; i < arr_len; i++) { if (inArray[i] != outArray[i]) { result = false; break; } } assertTrue( "test_AllocationCopyTo_3D_Padded_Byte Failed, output array does not match input", result); }
@SuppressLint("NewApi") public static void setAlbumBackground(ImageView albumBg, Bitmap buffer, Activity mActivity) { Bitmap buffer_output = null; if (buffer != null) { // TODO Auto-generated method stub int img_width = buffer.getHeight(); int img_height = buffer.getWidth(); float ratio = (float) img_width / img_height; if (ratio < 1) ratio = 1 / ratio; if (ratio > 2) albumBg.setVisibility(View.INVISIBLE); buffer_output = Bitmap.createBitmap(buffer); final RenderScript rs = RenderScript.create(mActivity); final Allocation input = Allocation.createFromBitmap( rs, buffer, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(20.0f); script.setInput(input); script.forEach(output); output.copyTo(buffer_output); } if (buffer_output != null) { albumBg.setVisibility(View.VISIBLE); albumBg.setImageBitmap(buffer_output); } else { albumBg.setVisibility(View.INVISIBLE); } }
/** * Blurs the given Bitmap using RenderScript. * * @param context * @param bitmap * @return */ @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) private static Bitmap blurUsingRenderScript(final Context context, final Bitmap bitmap) { // Create another bitmap that will hold the results of the filter. Bitmap blurredBitmap = bitmap.copy(bitmap.getConfig(), true); if (blurredBitmap != null) { // Create the Renderscript instance that will do the work. RenderScript rs = RenderScript.create(context); // Allocate memory for Renderscript to work with Allocation input = Allocation.createFromBitmap( rs, blurredBitmap, Allocation.MipmapControl.MIPMAP_FULL, Allocation.USAGE_SCRIPT); Allocation output = Allocation.createTyped(rs, input.getType()); // Load up an instance of the specific script that we want to use. ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setInput(input); script.setRadius(4); // Set the blur radius script.forEach(output); // Start the ScriptIntrinisicBlur output.copyTo(blurredBitmap); // Copy the output to the blurred bitmap } return blurredBitmap; }
public void test_AllocationPadded_copy1DRangeToUnchecked_Byte3() { Random random = new Random(0x172d8ab9); int width = random.nextInt(512); int arr_len = width * 3; byte[] inArray = new byte[arr_len]; byte[] outArray = new byte[arr_len]; random.nextBytes(inArray); Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS)); typeBuilder.setX(width); Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create()); alloc.setAutoPadding(true); int offset = random.nextInt(width); int count = width - offset; alloc.copy1DRangeFrom(offset, count, inArray); alloc.copy1DRangeToUnchecked(offset, count, outArray); boolean result = true; for (int i = 0; i < count * 3; i++) { if (inArray[i] != outArray[i]) { result = false; break; } } for (int i = count * 3; i < arr_len; i++) { if (outArray[i] != 0) { result = false; break; } } assertTrue( "test_copy1DRangeToUnchecked_Padded_Byte Failed, output array does not match input", result); }
public void test_AllocationPadded_Long3_1D() { Random random = new Random(0x172d8ab9); int width = random.nextInt(512); int arr_len = width * 3; long[] inArray = new long[arr_len]; long[] outArray = new long[arr_len]; for (int i = 0; i < arr_len; i++) { inArray[i] = random.nextLong(); } Type.Builder typeBuilder = new Type.Builder(mRS, Element.I64_3(mRS)); typeBuilder.setX(width); Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create()); alloc.setAutoPadding(true); alloc.copyFrom(inArray); alloc.copyTo(outArray); boolean result = true; for (int i = 0; i < arr_len; i++) { if (inArray[i] != outArray[i]) { result = false; break; } } assertTrue( "test_AllocationCopyTo_1D_Padded_Long Failed, output array does not match input", result); }
public void test_AllocationPadded_copy2DRangeTo_Long3() { Random random = new Random(0x172d8ab9); int width = random.nextInt(128); int height = random.nextInt(128); int xoff = random.nextInt(width); int yoff = random.nextInt(height); int xcount = width - xoff; int ycount = height - yoff; int arr_len = xcount * ycount * 3; long[] inArray = new long[arr_len]; long[] outArray = new long[arr_len]; for (int i = 0; i < arr_len; i++) { inArray[i] = random.nextLong(); } Type.Builder typeBuilder = new Type.Builder(mRS, Element.I64_3(mRS)); typeBuilder.setX(width).setY(height); Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create()); alloc.setAutoPadding(true); alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray); alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray); boolean result = true; for (int i = 0; i < arr_len; i++) { if (inArray[i] != outArray[i]) { result = false; break; } } assertTrue("test_copy2DRangeTo_Padded_Long Failed, output array does not match input", result); }
public void test_AllocationPadded_Double3_2D() { Random random = new Random(0x172d8ab9); int width = random.nextInt(128); int height = random.nextInt(128); int arr_len = width * height * 3; double[] inArray = new double[arr_len]; double[] outArray = new double[arr_len]; for (int i = 0; i < arr_len; i++) { inArray[i] = (double) random.nextFloat(); } Type.Builder typeBuilder = new Type.Builder(mRS, Element.F64_3(mRS)); typeBuilder.setX(width).setY(height); Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create()); alloc.setAutoPadding(true); alloc.copyFrom(inArray); alloc.copyTo(outArray); boolean result = true; for (int i = 0; i < arr_len; i++) { if (inArray[i] != outArray[i]) { result = false; break; } } assertTrue( "test_AllocationCopyTo_2D_Padded_Double Failed, output array does not match input", result); }
public byte[] decodeNV21ToRGB888(byte[] nv21, int width, int height, int degree) { Type.Builder tbIn = new Type.Builder(mRS, Element.U8(mRS)); tbIn.setX(nv21.length); Type.Builder tbOut = new Type.Builder(mRS, Element.U8(mRS)); tbOut.setX(width * height * 4); if (mInAlloc == null) { mInAlloc = Allocation.createTyped(mRS, tbIn.create()); } if (mOutAlloc == null) { mOutAlloc = Allocation.createTyped(mRS, tbOut.create()); } mInAlloc.copyFrom(nv21); mScript.bind_input(mInAlloc); mScript.bind_output(mOutAlloc); mScript.set_rotateDegree(degree); mScript.set_mImageWidth(width); mScript.set_mImageHeight(height); int[] indexBuffer = new int[height]; for (int i = 0; i < indexBuffer.length; i++) { indexBuffer[i] = i; } Type.Builder tbIndex = new Type.Builder(mRS, Element.I32(mRS)); tbIndex.setX(indexBuffer.length); if (mIndexAlloc == null) { mIndexAlloc = Allocation.createTyped(mRS, tbIndex.create()); } mIndexAlloc.copyFrom(indexBuffer); mScript.forEach_process(mIndexAlloc); if (mOutput == null || mOutputLength == -1) { mOutputLength = width * height * 4; mOutput = new byte[mOutputLength]; } mOutAlloc.copyTo(mOutput); return mOutput; }
private void testSetup(Element e) { int vs = e.getVectorSize(); if (vs == 3) { vs = 4; } createWalk(vs); Type t1 = Type.createX(mRS, e, gWidth * gHeight * gDepth / vs); in1DAlloc = Allocation.createTyped(mRS, t1); out1DAlloc = Allocation.createTyped(mRS, t1); script.set_gAlloc1DIn(in1DAlloc); script.set_gAlloc1DOut(out1DAlloc); scriptRelaxed.set_gAlloc1DIn(in1DAlloc); scriptRelaxed.set_gAlloc1DOut(out1DAlloc); Type t2 = Type.createXY(mRS, e, gWidth / vs, gHeight * gDepth); in2DAlloc = Allocation.createTyped(mRS, t2); out2DAlloc = Allocation.createTyped(mRS, t2); script.set_gAlloc2DIn(in2DAlloc); script.set_gAlloc2DOut(out2DAlloc); scriptRelaxed.set_gAlloc2DIn(in2DAlloc); scriptRelaxed.set_gAlloc2DOut(out2DAlloc); Type t3 = Type.createXYZ(mRS, e, gWidth / vs, gHeight, gDepth); in3DAlloc = Allocation.createTyped(mRS, t3); out3DAlloc = Allocation.createTyped(mRS, t3); script.set_gAlloc3DIn(in3DAlloc); script.set_gAlloc3DOut(out3DAlloc); scriptRelaxed.set_gAlloc3DIn(in3DAlloc); scriptRelaxed.set_gAlloc3DOut(out3DAlloc); }
public Bitmap blur(Bitmap bitmap) { Bitmap blurredMap = bitmap.copy(bitmap.getConfig(), true); RenderScript rs = RenderScript.create(this); final Allocation input = Allocation.createFromBitmap(rs, blurredMap); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(5f); script.setInput(input); script.forEach(output); output.copyTo(blurredMap); return blurredMap; }
public static Bitmap convertToBlur(Bitmap bmp, Context context) { final int radius = 20; if (Build.VERSION.SDK_INT > 16) { Log.d(MenuView.class.getSimpleName(), "VERSION.SDK_INT " + Build.VERSION.SDK_INT); Bitmap bitmap = bmp.copy(bmp.getConfig(), true); final RenderScript rs = RenderScript.create(context); final Allocation input = Allocation.createFromBitmap( rs, bmp, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(radius /* e.g. 3.f */); script.setInput(input); script.forEach(output); output.copyTo(bitmap); return bitmap; } return bmp; }
public void testScript() { Script S = new ScriptC_primitives(mRS); S.setTimeZone("America/New_York"); S.setVar(4, 9.0f); // floatTest S.setVar(5, 9.0); // doubleTest S.setVar(6, 7); // charTest S.setVar(7, 300); // shortTest S.setVar(8, 20000); // intTest S.setVar(9, 20000000000l); // longTest S.setVar(11, true); // boolTest FieldPacker fp = new FieldPacker(4); fp.addI32(3); S.setVar(12, fp); // structTest Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS)); Allocation a = Allocation.createTyped(mRS, tb.create()); S.setVar(13, a); // allocationTest S.bindAllocation(a, 14); // intPtrTest }
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public static Bitmap blur(Context context, Bitmap bitmap, int radius) throws RSRuntimeException { RenderScript rs = null; try { rs = RenderScript.create(context); Allocation input = Allocation.createFromBitmap( rs, bitmap, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); Allocation output = Allocation.createTyped(rs, input.getType()); ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); blur.setInput(input); blur.setRadius(radius); blur.forEach(output); output.copyTo(bitmap); } finally { if (rs != null) { rs.destroy(); } } return bitmap; }
public void setBackgroundProfileImage(String url, ImageView imageView) { File possibleCachedFile = new File(getCacheDir() + File.separator, Integer.toString(url.hashCode())); if (possibleCachedFile.exists()) { Bitmap photo = BitmapFactory.decodeFile(possibleCachedFile.getPath()); final RenderScript renderScript = RenderScript.create(this); final Allocation input = Allocation.createFromBitmap( renderScript, photo, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(renderScript, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(renderScript, Element.U8_4(renderScript)); script.setRadius(3.f); script.setInput(input); script.forEach(output); output.copyTo(photo); imageView.setImageBitmap(photo); } }
public void blur(Bitmap bkg) { long startMs = System.currentTimeMillis(); float radius = 20; bkg = small(bkg); Bitmap bitmap = bkg.copy(bkg.getConfig(), true); final RenderScript rs = RenderScript.create(context); final Allocation input = Allocation.createFromBitmap( rs, bkg, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(radius); script.setInput(input); script.forEach(output); output.copyTo(bitmap); bitmap = big(bitmap); this.bitmaps = bitmap; // setBackground(new BitmapDrawable(context.getResources(), bitmap)); rs.destroy(); Log.d("zhangle", "blur take away:" + (System.currentTimeMillis() - startMs) + "ms"); }
@SuppressLint("NewApi") public static Bitmap fastblur(Context context, Bitmap sentBitmap, int radius) { try { if (VERSION.SDK_INT > 16) { Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig(), true); final RenderScript rs = RenderScript.create(context); final Allocation input = Allocation.createFromBitmap( rs, sentBitmap, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(radius /* e.g. 3.f */); script.setInput(input); script.forEach(output); output.copyTo(bitmap); return bitmap; } // Stack Blur v1.0 from // http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html // // Java Author: Mario Klingemann <mario at quasimondo.com> // http://incubator.quasimondo.com // created Feburary 29, 2004 // Android port : Yahel Bouaziz <yahel at kayenko.com> // http://www.kayenko.com // ported april 5th, 2012 // This is a compromise between Gaussian Blur and Box blur // It creates much better looking blurs than Box Blur, but is // 7x faster than my Gaussian Blur implementation. // // I called it Stack Blur because this describes best how this // filter works internally: it creates a kind of moving stack // of colors whilst scanning through the image. Thereby it // just has to add one new block of color to the right side // of the stack and remove the leftmost color. The remaining // colors on the topmost layer of the stack are either added on // or reduced by one, depending on if they are on the right or // on the left side of the stack. // // If you are using this algorithm in your code please add // the following line: // // Stack Blur Algorithm by Mario Klingemann <*****@*****.**> Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig(), true); if (radius < 1) { return (null); } int w = bitmap.getWidth(); int h = bitmap.getHeight(); int[] pix = new int[w * h]; Log.e("pix", w + " " + h + " " + pix.length); bitmap.getPixels(pix, 0, w, 0, 0, w, h); int wm = w - 1; int hm = h - 1; int wh = w * h; int div = radius + radius + 1; int r[] = new int[wh]; int g[] = new int[wh]; int b[] = new int[wh]; int rsum, gsum, bsum, x, y, i, p, yp, yi, yw; int vmin[] = new int[Math.max(w, h)]; int divsum = (div + 1) >> 1; divsum *= divsum; int dv[] = new int[256 * divsum]; for (i = 0; i < 256 * divsum; i++) { dv[i] = (i / divsum); } yw = yi = 0; int[][] stack = new int[div][3]; int stackpointer; int stackstart; int[] sir; int rbs; int r1 = radius + 1; int routsum, goutsum, boutsum; int rinsum, ginsum, binsum; for (y = 0; y < h; y++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; for (i = -radius; i <= radius; i++) { p = pix[yi + Math.min(wm, Math.max(i, 0))]; sir = stack[i + radius]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rbs = r1 - Math.abs(i); rsum += sir[0] * rbs; gsum += sir[1] * rbs; bsum += sir[2] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } } stackpointer = radius; for (x = 0; x < w; x++) { r[yi] = dv[rsum]; g[yi] = dv[gsum]; b[yi] = dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (y == 0) { vmin[x] = Math.min(x + radius + 1, wm); } p = pix[yw + vmin[x]]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[(stackpointer) % div]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi++; } yw += w; } for (x = 0; x < w; x++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; yp = -radius * w; for (i = -radius; i <= radius; i++) { yi = Math.max(0, yp) + x; sir = stack[i + radius]; sir[0] = r[yi]; sir[1] = g[yi]; sir[2] = b[yi]; rbs = r1 - Math.abs(i); rsum += r[yi] * rbs; gsum += g[yi] * rbs; bsum += b[yi] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } if (i < hm) { yp += w; } } yi = x; stackpointer = radius; for (y = 0; y < h; y++) { // Preserve alpha channel: ( 0xff000000 & pix[yi] ) pix[yi] = (0xff000000 & pix[yi]) | (dv[rsum] << 16) | (dv[gsum] << 8) | dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (x == 0) { vmin[y] = Math.min(y + r1, hm) * w; } p = x + vmin[y]; sir[0] = r[p]; sir[1] = g[p]; sir[2] = b[p]; rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[stackpointer]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi += w; } } Log.e("pix", w + " " + h + " " + pix.length); bitmap.setPixels(pix, 0, w, 0, 0, w, h); return (bitmap); } catch (Exception e) { e.printStackTrace(); return null; } }
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public static Bitmap fastblur(Context context, Bitmap sentBitmap, int radius) { if (Build.VERSION.SDK_INT > 16) { Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig(), true); final RenderScript rs = RenderScript.create(context); final Allocation input = Allocation.createFromBitmap( rs, sentBitmap, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(radius); script.setInput(input); script.forEach(output); output.copyTo(bitmap); return bitmap; } Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig(), true); if (radius < 1) { return (null); } int w = bitmap.getWidth(); int h = bitmap.getHeight(); int[] pix = new int[w * h]; bitmap.getPixels(pix, 0, w, 0, 0, w, h); int wm = w - 1; int hm = h - 1; int wh = w * h; int div = radius + radius + 1; int r[] = new int[wh]; int g[] = new int[wh]; int b[] = new int[wh]; int rsum, gsum, bsum, x, y, i, p, yp, yi, yw; int vmin[] = new int[Math.max(w, h)]; int divsum = (div + 1) >> 1; divsum *= divsum; int dv[] = new int[256 * divsum]; for (i = 0; i < 256 * divsum; i++) { dv[i] = (i / divsum); } yw = yi = 0; int[][] stack = new int[div][3]; int stackpointer; int stackstart; int[] sir; int rbs; int r1 = radius + 1; int routsum, goutsum, boutsum; int rinsum, ginsum, binsum; for (y = 0; y < h; y++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; for (i = -radius; i <= radius; i++) { p = pix[yi + Math.min(wm, Math.max(i, 0))]; sir = stack[i + radius]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rbs = r1 - Math.abs(i); rsum += sir[0] * rbs; gsum += sir[1] * rbs; bsum += sir[2] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } } stackpointer = radius; for (x = 0; x < w; x++) { r[yi] = dv[rsum]; g[yi] = dv[gsum]; b[yi] = dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (y == 0) { vmin[x] = Math.min(x + radius + 1, wm); } p = pix[yw + vmin[x]]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[(stackpointer) % div]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi++; } yw += w; } for (x = 0; x < w; x++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; yp = -radius * w; for (i = -radius; i <= radius; i++) { yi = Math.max(0, yp) + x; sir = stack[i + radius]; sir[0] = r[yi]; sir[1] = g[yi]; sir[2] = b[yi]; rbs = r1 - Math.abs(i); rsum += r[yi] * rbs; gsum += g[yi] * rbs; bsum += b[yi] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } if (i < hm) { yp += w; } } yi = x; stackpointer = radius; for (y = 0; y < h; y++) { pix[yi] = (0xff000000 & pix[yi]) | (dv[rsum] << 16) | (dv[gsum] << 8) | dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (x == 0) { vmin[y] = Math.min(y + r1, hm) * w; } p = x + vmin[y]; sir[0] = r[p]; sir[1] = g[p]; sir[2] = b[p]; rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[stackpointer]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi += w; } } bitmap.setPixels(pix, 0, w, 0, 0, w, h); return (bitmap); }