- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了对齐两个灰度图像的强度值(作为进一步处理的第一步),我编写了一个 Java 方法:
将两个图像的位图转换为两个包含位图强度的 int[]
数组(我在这里只取红色分量,因为它是灰度,即 r=g=b ) .
public static int[] bmpToData(Bitmap bmp){
int width = bmp.getWidth();
int height = bmp.getHeight();
int anzpixel = width*height;
int [] pixels = new int[anzpixel];
int [] data = new int[anzpixel];
bmp.getPixels(pixels, 0, width, 0, 0, width, height);
for (int i = 0 ; i < anzpixel ; i++) {
int p = pixels[i];
int r = (p & 0xff0000) >> 16;
//int g = (p & 0xff00) >> 8;
//int b = p & 0xff;
data[i] = r;
}
return data;
}
将位图 2 的累积强度分布与位图 1 的强度分布对齐
//aligns the intensity distribution of a grayscale picture moving (given by int[] //data2) the the intensity distribution of a reference picture fixed (given by // int[] data1)
public static int[] histMatch(int[] data1, int[] data2){
int anzpixel = data1.length;
int[] histogram_fixed = new int[256];
int[] histogram_moving = new int[256];
int[] cumhist_fixed = new int[256];
int[] cumhist_moving = new int[256];
int i=0;
int j=0;
//read intensities of fixed und moving in histogram
for (int n = 0; n < anzpixel; n++) {
histogram_fixed[data1[n]]++;
histogram_moving[data2[n]]++;
}
// calc cumulated distributions
cumhist_fixed[0]=histogram_fixed[0];
cumhist_moving[0]=histogram_moving[0];
for ( i=1; i < 256; ++i ) {
cumhist_fixed[i] = cumhist_fixed[i-1]+histogram_fixed[i];
cumhist_moving[i] = cumhist_moving[i-1]+histogram_moving [i];
}
// look-up-table lut[]. For each quantile i of the moving picture search the
// value j of the fixed picture where the quantile is the same as that of moving
int[] lut = new int[anzpixel];
j=0;
for ( i=0; i < 256; ++i ){
while(cumhist_fixed[j]< cumhist_moving[i]){
j++;
}
// check, whether the distance to the next-lower intensity is even lower, and if so, take this value
if ((j!=0) && ((cumhist_fixed[j-1]- cumhist_fixed[i]) < (cumhist_fixed[j]- cumhist_fixed[i]))){
lut[i]= (j-1);
}
else {
lut[i]= (j);
}
}
// apply the lut[] to moving picture.
i=0;
for (int n = 0; n < anzpixel; n++) {
data2[n]=(int) lut[data2[n]];
}
return data2;
}
将 int[]
数组转换回位图。
public static Bitmap dataToBitmap(int[] data, int width, int heigth) {
int index=0;
Bitmap bmp = Bitmap.createBitmap(width, heigth, Bitmap.Config.ARGB_8888);
for (int x = 0; x < width; x++) {
for (int y = 0; y < heigth; y++) {
index=y*width+x;
int c = data[index];
bmp.setPixel(x,y,Color.rgb(c, c, c));
}
}
return bmp;
}
虽然核心过程 2) 简单且快速,但转换步骤 1) 和 3) 的效率相当低。在 Renderscript 中完成所有事情会更酷。但是,老实说,由于缺少文档,我完全迷失了这样做,虽然有许多关于 Renderscript 可以执行的令人印象深刻的示例,但我看不到从这些可能性中受益的方法(没有书籍,没有文档)。非常感谢任何建议!
最佳答案
首先,使用 Android Studio“导入示例...”并选择基本渲染脚本。这将为您提供一个我们现在要修改的工作项目。
首先,让我们向 MainActivity
添加更多 Allocation 引用。我们将使用它们在 Java 和 Renderscript 之间传递图像数据、直方图和 LUT。
private Allocation mInAllocation;
private Allocation mInAllocation2;
private Allocation[] mOutAllocations;
private Allocation mHistogramAllocation;
private Allocation mHistogramAllocation2;
private Allocation mLUTAllocation;
然后在 onCreate()
加载另一个图像,您还需要将其添加到/res/drawables/。
mBitmapIn2 = loadBitmap(R.drawable.cat_480x400);
在 createScript()
中创建额外的分配:
mInAllocation2 = Allocation.createFromBitmap(mRS, mBitmapIn2);
mHistogramAllocation = Allocation.createSized(mRS, Element.U32(mRS), 256);
mHistogramAllocation2 = Allocation.createSized(mRS, Element.U32(mRS), 256);
mLUTAllocation = Allocation.createSized(mRS, Element.U32(mRS), 256);
现在是主要部分(在 RenderScriptTask
中):
/*
* Invoke histogram kernel for both images
*/
mScript.bind_histogram(mHistogramAllocation);
mScript.forEach_compute_histogram(mInAllocation);
mScript.bind_histogram(mHistogramAllocation2);
mScript.forEach_compute_histogram(mInAllocation2);
/*
* Variables copied verbatim from your code.
*/
int []histogram_fixed = new int[256];
int []histogram_moving = new int[256];
int[] cumhist_fixed = new int[256];
int[] cumhist_moving = new int[256];
int i=0;
int j=0;
// copy computed histograms to Java side
mHistogramAllocation.copyTo(histogram_fixed);
mHistogramAllocation2.copyTo(histogram_moving);
// your code again...
// calc cumulated distributions
cumhist_fixed[0]=histogram_fixed[0];
cumhist_moving[0]=histogram_moving[0];
for ( i=1; i < 256; ++i ) {
cumhist_fixed[i] = cumhist_fixed[i-1]+histogram_fixed[i];
cumhist_moving[i] = cumhist_moving[i-1]+histogram_moving [i];
}
// look-up-table lut[]. For each quantile i of the moving picture search the
// value j of the fixed picture where the quantile is the same as that of moving
int[] lut = new int[256];
j=0;
for ( i=0; i < 256; ++i ){
while(cumhist_fixed[j]< cumhist_moving[i]){
j++;
}
// check, whether the distance to the next-lower intensity is even lower, and if so, take this value
if ((j!=0) && ((cumhist_fixed[j-1]- cumhist_fixed[i]) < (cumhist_fixed[j]- cumhist_fixed[i]))){
lut[i]= (j-1);
}
else {
lut[i]= (j);
}
}
// copy the LUT to Renderscript side
mLUTAllocation.copyFrom(lut);
mScript.bind_LUT(mLUTAllocation);
// Apply LUT to the destination image
mScript.forEach_apply_histogram(mInAllocation2, mInAllocation2);
/*
* Copy to bitmap and invalidate image view
*/
//mOutAllocations[index].copyTo(mBitmapsOut[index]);
// copy back to Bitmap in preparation for viewing the results
mInAllocation2.copyTo((mBitmapsOut[index]));
注意事项:
最后是 Renderscript 代码。唯一不明显的部分是使用 rsAtomicInc()
来增加直方图 bin 中的值 - 这是必要的,因为可能有许多线程试图同时增加同一个 bin。
#pragma version(1)
#pragma rs java_package_name(com.example.android.basicrenderscript)
#pragma rs_fp_relaxed
int32_t *histogram;
int32_t *LUT;
void __attribute__((kernel)) compute_histogram(uchar4 in)
{
volatile int32_t *addr = &histogram[in.r];
rsAtomicInc(addr);
}
uchar4 __attribute__((kernel)) apply_histogram(uchar4 in)
{
uchar val = LUT[in.r];
uchar4 result;
result.r = result.g = result.b = val;
result.a = in.a;
return(result);
}
关于android - Renderscript 中的直方图匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31757109/
OpenCL doesn't support recursion . CUDA does, but only from a certain version .初始搜索表明 RenderScript 确
是否可以使用 RenderScript 拍摄 Y'UV 格式的相机图像: 将其转换为 RGBA 裁剪到特定区域 必要时旋转它 最佳答案 是的!我想出了如何并认为我会与他人分享。 RenderScrip
我希望从我的 renderscript 内核返回一个结构数组。我的问题是,虽然我可以使用生成的代码在 java 中创建一个结构数组,并通过获取由此生成的数组的分配将其传递给我的根方法,但我无法将数组返
我似乎找不到任何关于如何检查 RenderScript 是否真正并行化代码的文档。我想知道是否正在使用 CPU 或 GPU 以及调度的线程数。 我唯一发现的是这个错误报告: http://code.g
我想用 renderscript 做一些实验,所以我从 sdk 附带的示例开始,但不幸的是我无法编译它。是否有任何我可能需要的额外工具来编译和构建该示例,我曾尝试阅读文档。但他们什么也没提到。 示例项
使用 gradle:3.3.0-alpha06 更新到 Android Studio 3.3 Canary 6 后,我开始收到错误 Cannot find file sdk\build-tools\2
我编写了以下渲染脚本: ushort* curve_hth; ushort* curve_hts; ushort* curve_htv; ushort* curve_sth; ushort* curv
我开始探索 renderscript 的强大功能。 尝试使用 2D 图像数据,我可以将像素转换为其他像素。但是,如何从输入分配中获取相邻像素? 我想知道例如内置的 convolve3x3 过滤器是如何
renderscript 做矩阵计算很强大,但是如果我想处理当前帧和前一帧之间的差异。 正确的做法是什么: 在 renderscript 中保存前一帧,然后在新帧进来后进行计算。 在 java 中保存
如何在调用 rsgDrawText 之前设置字体特性?我对能够设置字体大小特别感兴趣。 最佳答案 这是一个多部分的过程。在用于控制 RenderScript 运行时(通常拥有脚本的文件)的文件中,在初
我想知道是否可以使用 RenderScript 引擎来优化算法。 该算法对图像进行迭代处理,直到满足某些条件。在处理所需的迭代次数之前无法知道。但我只看到 RenderScript 示例在具有 N 个
我注意到我实际上可以对 ScriptIntrinsicBlur 的输入和输出使用相同的分配。 .由于我对未过滤的分配不感兴趣,因此这种方法不需要创建另一个分配并且在内存方面更好。 但是,它安全吗?我在
我可以在适用于 android 2.2 及更高版本的应用程序中使用 renderscript 吗?因为我知道它已被用于墙纸,但仅限于内部。那改变了吗,因为 renderscript 现在是公开的?我正
我找到了这个 link我想试试轮播的例子。我将所有类和 rs 文件(轮播示例中的所有内容)复制到我自己的项目中,并尝试在实际设备(摩托罗拉 xoom)上构建它。但我一直在强制关闭。 logcat 中的
是否可以在 RenderScript for Android 中使用二维数组?分配只允许我将一个向量(一维)数组放入分配中。但我不知道如何生成二维数组。我 found a google groups
我正在编写一小段 Renderscript 来动态拍摄图像并根据每个像素的 RGB 值将像素分类到“桶”中。桶的数量可能会有所不同,所以我的直觉是创建一个数组列表。显然,这在 Renderscript
我想更好地了解内存分配在 Renderscript 中的工作原理。 首先,我想确认内存是在运行时还是编译时分配的。 文档指出: Non-static, global variables that yo
为了对齐两个灰度图像的强度值(作为进一步处理的第一步),我编写了一个 Java 方法: 将两个图像的位图转换为两个包含位图强度的 int[] 数组(我在这里只取红色分量,因为它是灰度,即 r=g=b
无法理解,因为当我尝试将 Allocation 用作输入和输出时,程序崩溃了。 我已经检查过是否由于 android list 中的某种类型的权限,但都没有。 project.properties如下
我正在编写渲染脚本代码,我需要一些实用函数。但是当我编写这些函数并进行编译时,我收到一条错误消息,指出可调用函数必须返回 void。他们正在强制执行此操作,以便所有渲染脚本可调用函数都可以异步运行。但
我是一名优秀的程序员,十分优秀!