使用ARM NEON将8位图像调整为2

时间:2013-07-23 16:34:42

标签: image image-processing arm simd neon

我有一个8位640x480图像,我想缩小到320x240图像:

void reducebytwo(uint8_t *dst, uint8_t *src)
//src is 640x480, dst is 320x240

使用ARM SIMD NEON做到这一点的最佳方法是什么?在某处有任何示例代码吗?

作为一个起点,我只想做相同的事情:

for (int h = 0; h < 240; h++)
    for (int w = 0; w < 320; w++)
        dst[h * 320 + w] = (src[640 * h * 2 + w * 2] + src[640 * h * 2 + w * 2 + 1] + src[640 * h * 2 + 640 + w * 2] + src[640 * h * 2 + 640 + w * 2 + 1]) / 4; 

3 个答案:

答案 0 :(得分:5)

这是您的代码的一对一翻译,以支持NEON内在函数:

#include <arm_neon.h>
#include <stdint.h>

static void resize_line (uint8_t * __restrict src1, uint8_t * __restrict src2, uint8_t * __restrict dest)
{
  int i;
  for (i=0; i<640; i+=16)
  {
    // load upper line and add neighbor pixels:
    uint16x8_t a = vpaddlq_u8 (vld1q_u8 (src1));

    // load lower line and add neighbor pixels:
    uint16x8_t b = vpaddlq_u8 (vld1q_u8 (src2));

    // sum of upper and lower line: 
    uint16x8_t c = vaddq_u16 (a,b);

    // divide by 4, convert to char and store:
    vst1_u8 (dest, vshrn_n_u16 (c, 2));

    // move pointers to next chunk of data
    src1+=16;
    src2+=16;
    dest+=8;
   }
}   

void resize_image (uint8_t * src, uint8_t * dest)
{
  int h;    
  for (h = 0; h < 240 - 1; h++)
  {
    resize_line (src+640*(h*2+0), 
                 src+640*(h*2+1), 
                 dest+320*h);
  }
}

它处理32个源像素,每次迭代生成8个输出像素。

我快速查看了汇编程序输出,看起来没问题。如果在汇编程序中编写resize_line函数,则可以获得更好的性能,展开循环并消除管道停顿。这将给你一个估计三倍的性能提升。

它应该比没有汇编程序更改的实现快得多。

注意:我没有测试过代码......

答案 1 :(得分:1)

如果您不太关心精度,那么与更准确的算法相比,这个内循环应该会给您两倍的计算吞吐量:

for (i=0; i<640; i+= 32)
{
    uint8x16x2_t a, b;
    uint8x16_t c, d;

    /* load upper row, splitting even and odd pixels into a.val[0]
     * and a.val[1] respectively. */
    a = vld2q_u8(src1);

    /* as above, but for lower row */
    b = vld2q_u8(src2);

    /* compute average of even and odd pixel pairs for upper row */
    c = vrhaddq_u8(a.val[0], a.val[1]);
    /* compute average of even and odd pixel pairs for lower row */
    d = vrhaddq_u8(b.val[0], b.val[1]);

    /* compute average of upper and lower rows, and store result */
    vst1q_u8(dest, vrhaddq_u8(c, d));

    src1+=32;
    src2+=32;
    dest+=16;
}

它的工作原理是使用vhadd操作,其结果与输入的大小相同。这样您就不必将最终总和降回到8位,并且所有算术都是8位,这意味着每条指令可以执行两倍的操作。

然而,它不太准确,因为中间和是量化的,而GCC 4.7在生成代码方面做得非常糟糕。 GCC 4.8就可以了。

但是,整个操作很可能受到I / O限制。应该展开循环以最大化负载和算术之间的分离,并且应该使用__builtin_prefetch()(或PLD)在需要之前将传入数据提升到缓存中。

答案 2 :(得分:1)

这是@Nils Pipenbrinck建议的reduce_line上的asm版本

static void reduce2_neon_line(uint8_t* __restrict src1, uint8_t* __restrict src2, uint8_t* __restrict dest, int width) {
    for(int i=0; i<width; i+=16) {
        asm (
             "pld [%[line1], #0xc00]     \n"
             "pld [%[line2], #0xc00]     \n"
             "vldm %[line1]!, {d0,d1}  \n"
             "vldm %[line2]!, {d2,d3}  \n"
             "vpaddl.u8 q0, q0         \n"
             "vpaddl.u8 q1, q1         \n"
             "vadd.u16  q0, q1         \n"
             "vshrn.u16 d0, q0, #2     \n"

             "vst1.8 {d0}, [%[dst]]! \n"

             :
             : [line1] "r"(src1), [line2] "r"(src2), [dst] "r"(dest)
             : "q0", "q1", "memory"
             );
    }
}

它比C版快4倍(在iPhone 5上测试过)。