Having issues while running the reconstruction pipeline for tutorial

  1. I was running the reconstruction pipeline from the subheading quick start in the following documentation link: http://www.open3d.org/docs/release/tutorial/ReconstructionSystem/system_overview.html#quick-start
  2. While running the script run_system.py i am facing an Attribute error which says: ‘bool’ object has no attribute ‘lower’.
  3. I cloned the repositiry via github desktop and started working from the reconstruction folder directly.
  4. The python and open3d version are latest

Just now saw the same issue on the github repo (https://github.com/intel-isl/Open3D/issues/206). My apologies!

In the file, make_gragments.py,
replace if config[“python_multi_threading”].lower() == “true”:
to if str(config[“python_multi_threading”]).lower() == “true”:

Do the same for all other files if you have this problem