is there a issue in prepare_semantic3d.py?
when i run that code,in "points.append(np.loadtxt(line, dtype=np.float32))" the "line" is a point,it cause error: FileNotFoundError: -6.69267368 -0.29421055 1.16930819 -1515.0000 169 186 204
and what the "1e10^5" means?
sorry,but i want to know are u really finish the work with the dataset semanti3d?
这个问题你解决了么? loadtxt 的那部分,我以为是我的文件路径不对
Don't use this rope for semantic3d,it's really bad.
Thank you
when i run that code,in "points.append(np.loadtxt(line, dtype=np.float32))" the "line" is a point,it cause error: FileNotFoundError: -6.69267368 -0.29421055 1.16930819 -1515.0000 169 186 204
The np.loadtxt() function does not accept a single line as input. It is used to load data from a file, not from a specific line. If you want to append a single line of data to points, you can create a list from the line and then append it. Add this: line = line.strip().split() before this line: "points.append(np.loadtxt(line, dtype=np.float32))"
Fk Fk Fk Fk Fk Fk Fk Fk Fk,it's full of bugs
set i_dont_have_a_lot_of_memory_ok = False and all solved
when i run that code,in "points.append(np.loadtxt(line, dtype=np.float32))" the "line" is a point,it cause error: FileNotFoundError: -6.69267368 -0.29421055 1.16930819 -1515.0000 169 186 204
The np.loadtxt() function does not accept a single line as input. It is used to load data from a file, not from a specific line. If you want to append a single line of data to points, you can create a list from the line and then append it. Add this: line = line.strip().split() before this line: "points.append(np.loadtxt(line, dtype=np.float32))"
thankssssss!