We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f114f8f commit 327d7baCopy full SHA for 327d7ba
tests/integration_tests/pybinds_tests/test_pybind_units.py
@@ -44,7 +44,9 @@ def test_DFPointCloud_init():
44
def test_DFPointCloud_load_from_PLY():
45
pc = dfb.dfb_geometry.DFPointCloud()
46
# pc.load_from_PLY(get_ply_cloud_roof_quarter_path())
47
- pc.load_from_PLY(os.path.join(os.path.dirname(__file__), "./roof_quarter.ply"))
+ path_raw = os.path.join(os.path.dirname(__file__), "./roof_quarter.ply")
48
+ abs_path = os.path.abspath(path_raw)
49
+ pc.load_from_PLY(abs_path)
50
51
assert pc.points.__len__() == 7379, "DFPointCloud should have 7379 points"
52
assert pc.normals.__len__() == 7379, "DFPointCloud should have 7379 normals"
0 commit comments