1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Expand char to 32 bit of float

This commit is contained in:
Adrian Kretz
2026-05-23 10:17:16 +02:00
parent 335c5d11ef
commit 3157f3e3ed
+1 -1
View File
@@ -1290,7 +1290,7 @@ struct MaskedNormInf_SIMD<float, float> {
v_float32 acc = vx_setzero_f32();
for (; i <= len - vstep; i += vstep) {
v_uint32 m = v_reinterpret_as_u32(vx_load_expand(mask + i));
v_uint32 m = vx_load_expand_q(mask + i);
v_uint32 cmp = v_gt(m, vx_setzero_u32());
v_float32 s = vx_load(src + i);
s = v_abs(s);