mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 06:26:29 +08:00
Merge pull request #16913 from alalek:gapi_simd_initialization
This commit is contained in:
commit
1eba7f60c2
@ -1831,7 +1831,7 @@ static void run_sepfilter5x5_char2short(short out[], const uchar *in[], int widt
|
||||
for (; l <= length - nlanes; l += nlanes)
|
||||
{
|
||||
v_uint16 t[kxLen];
|
||||
v_int16 sum;
|
||||
v_int16 sum = vx_setzero_s16();
|
||||
|
||||
for (int i = 0; i < kxLen; ++i)
|
||||
{
|
||||
@ -1862,7 +1862,7 @@ static void run_sepfilter5x5_char2short(short out[], const uchar *in[], int widt
|
||||
for (; l <= length - nlanes; l += nlanes)
|
||||
{
|
||||
v_int16 s[buffSize];
|
||||
v_int16 sum;
|
||||
v_int16 sum = vx_setzero_s16();
|
||||
|
||||
for (int i = 0; i < kyLen; ++i)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user