为什么我在android中的rendescript根本不工作?

时间:2015-07-29 17:44:41

标签: android renderscript

这是我的build.gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion '22.0.1'

    defaultConfig {
        applicationId "com.apps.foo.pointop"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        renderscriptTargetApi 19
        renderscriptSupportModeEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
}

我也有几个课程:

只要有来自相机的新帧,就会调用此方法(这意味着很多次!)

 @Override
    public void onCleanPreviewBitmapUpdated(Bitmap origBmp) {

        if(processedPreviewFragment != null) {
            processedPreviewFragment.setImageViewBitmap(
                    bProcessor.processBitmap(origBmp)
            );
        }
    }

现在我的bProcessor课程执行此操作:

public Bitmap processBitmap(Bitmap origBmp) {
    return edgeDetection.apply(origBmp);
}

非常简单。

我的edgeDetection班有这个:

package com.apps.foo.pointop;

import android.content.Context;
import android.graphics.Bitmap;
import android.support.v8.renderscript.*;

public class EdgeDetection {

    private Allocation inAllocation;
    private Allocation outAllocation;
    private RenderScript mRS = null;
    private ScriptC_edgedetect mScript = null;

    public EdgeDetection(Context ctx) {
        mRS = RenderScript.create(ctx);
        mScript = new ScriptC_edgedetect(mRS, ctx.getResources(), R.raw.edgedetect);
    }

    public Bitmap apply(Bitmap origBmp) {

        Bitmap bmpCopy = origBmp.copy(origBmp.getConfig(), true); // is this needed?

        inAllocation = Allocation.createFromBitmap(mRS, origBmp);
        outAllocation = Allocation.createFromBitmap(mRS, bmpCopy);

        mScript.forEach_root(inAllocation,outAllocation);

        return bmpCopy;
    }
}

现在最后我的RenderScript代码就是这个(进行边缘检测,我现在只是在对图像进行平均处理):

#pragma version(1)
#pragma rs java_package_name(com.apps.foo.pointop)


uchar4 RS_KERNEL root(uchar4 in, uint32_t x, uint32_t y) {

  uchar4 out = in;
  float3 pixel = convert_float4(in).rgb;

  pixel.r = (pixel.r + pixel.g + pixel.b)/3;

  pixel.g = (pixel.r + pixel.g + pixel.b)/3;
  pixel.b = (pixel.r + pixel.g + pixel.b)/3;

  out.xyz = convert_uchar3(pixel);
  return out;
}

现在,当我运行代码时,没有任何改变....我甚至比较了新的位图,它与原始位图完全相同。为什么我的renderscript正在运行但没有应用更改?

我在运行KitKat 4.4.4的三星S4 mini上进行测试。

1 个答案:

答案 0 :(得分:3)

在forEach之后,你需要做:

outAllocation.copyTo(bmpCopy);

如果没有它,您实际上并没有复制forEach操作的分配结果。位图分配通常隐式声明USAGE_SHARED,但仍然需要使用copyTo(),这可能只是一个无操作。