以下のコードをNeonAssemblyに変換する作業を行っています。どんな助けでも大歓迎です。
void sum(int length, int *a, int *b, int *c, int *d, char *result)
{
int i;
for (i = 0; i < length; i++)
{
int sum = (a[i] + b[i] + c[i] + d[i])/4;
if (sum > threshold)
result[i] = 1;
else
result[i] = 0;
}
}
実際のコードは画像の2値化アルゴリズムです。上記のコードは、アイデアを示すためのものであり、単純なものをより複雑にするためのものではありません。