You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With recent version of numpy line 89 in depthy/stereo/cost_aggregation.py throws an error
AttributeError: module 'numpy' has no attribute 'float'. np.float was a deprecated alias for the builtin float.
Changing np.float to float fixes the error.
The text was updated successfully, but these errors were encountered:
With recent version of numpy line 89 in
depthy/stereo/cost_aggregation.py
throws an errorAttributeError: module 'numpy' has no attribute 'float'. np.float was a deprecated alias for the builtin float.
Changing
np.float
tofloat
fixes the error.The text was updated successfully, but these errors were encountered: