1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-18 17:24:28 +08:00

fix segmentation fault on Arm 32bit platform

This commit is contained in:
Tomoaki Teshima
2021-02-05 22:35:15 +09:00
parent 0def473619
commit efbf1b8f4f

View File

@@ -231,11 +231,11 @@ inline Point3f TSDFVolumeCPU::getNormalVoxel(const Point3f& _p) const
inline v_float32x4 TSDFVolumeCPU::getNormalVoxel(const v_float32x4& p) const
{
if(v_check_any((p < v_float32x4(1.f, 1.f, 1.f, 0.f)) +
(p >= v_float32x4((float)(volResolution.x-2),
if(v_check_any (p < v_float32x4(1.f, 1.f, 1.f, 0.f)) ||
v_check_any (p >= v_float32x4((float)(volResolution.x-2),
(float)(volResolution.y-2),
(float)(volResolution.z-2), 1.f))
))
)
return nanv;
v_int32x4 ip = v_floor(p);