您好,登錄后才能下訂單哦!
怎么在Android中實現攝像頭高斯模糊?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
核心代碼:
/** * 轉換數據并進行模糊處理 */ public Bitmap blur(byte[] data, Camera camera,float blurvaule){ Camera.Size previewSize = camera.getParameters().getPreviewSize(); if (yuvType == null) { yuvType = new Type.Builder(rs, Element.U8(rs)).setX(data.length); in = Allocation.createTyped(rs, yuvType.create(), Allocation.USAGE_SCRIPT); rgbaType = new Type.Builder(rs, Element.RGBA_8888(rs)).setX(previewSize.width).setY(previewSize.height); out = Allocation.createTyped(rs, rgbaType.create(), Allocation.USAGE_SCRIPT); } in.copyFrom(data); yuvToRgbIntrinsic.setInput(in); yuvToRgbIntrinsic.forEach(out); Bitmap bmpout = Bitmap.createBitmap(previewSize.width, previewSize.height, Bitmap.Config.ARGB_8888); out.copyTo(bmpout); //return adjustPhotoRotation(blurBitmap(bmpout,blurvaule),90); return blurBitmap(bmpout,blurvaule); } /** * 模糊處理Bitmap * @param bitmap * @return */ private Bitmap blurBitmap(Bitmap bitmap,float vaule) { // 用需要創建高斯模糊bitmap創建一個空的bitmap Bitmap outBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888); // 初始化Renderscript,這個類提供了RenderScript context, // 在創建其他RS類之前必須要先創建這個類,他控制RenderScript的初始化,資源管理,釋放 // 創建高斯模糊對象 // 創建Allocations,此類是將數據傳遞給RenderScript內核的主要方法, // 并制定一個后備類型存儲給定類型 Allocation allIn = Allocation.createFromBitmap(rs, bitmap); Allocation allOut = Allocation.createFromBitmap(rs, outBitmap); // 設定模糊度 blurScript.setRadius(vaule); // Perform the Renderscript blurScript.setInput(allIn); blurScript.forEach(allOut); // Copy the final bitmap created by the out Allocation to the outBitmap allOut.copyTo(outBitmap); // recycle the original bitmap bitmap.recycle(); // After finishing everything, we destroy the Renderscript. rs.destroy(); return outBitmap; }
ok,這兩個方法就夠了,將返回的Bitmap給ImageView就可以了,之前一直以為是用JNI實現的,試了一下才發現JAVA也可以,效果也不錯,網上也沒類似教程就寫出來給需要的人。對了,還需要在項目的build.gradle中加入
defaultConfig { ....... renderscriptTargetApi 21 renderscriptSupportModeEnabled true }
關于怎么在Android中實現攝像頭高斯模糊問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。