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
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 736, in from_path
return point_cloud_from_path(fname)
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 303, in point_cloud_from_path
pc = point_cloud_from_fileobj(f)
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 296, in point_cloud_from_fileobj
return PointCloud(metadata, pc_data)
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 671, in init
self.check_sanity()
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 683, in check_sanity
assert(_metadata_is_consistent(md))
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 177, in _metadata_is_consistent
if not check(metadata):
File "/usr/local/lib/python3.5/dist-packages/pypcd/pypcd.py", line 162, in
checks.append((lambda m: len((m['type'])) == len((m['count'])) ==
TypeError: object of type 'map' has no len()
In python 3, map has no len()
Add a list() to resolve the problems?
The text was updated successfully, but these errors were encountered: