horizontal image flip(Neon优化)

1、原始代码

这个代码非常简单,就是将同一行的像素进行反转,我们需要注意,这里的像素是RGBA,因此一个像素共32位

uint32_t line;
// 1. For an image of width w and height h, for all lines in the image, do the following.
for (line = 0; line < h; line++) {
   
  uint32_t *left = raster + 

你可能感兴趣的:(性能优化,人工智能,算法,计算机视觉,arm)