neu-vi / PlanarRecon

Apache License 2.0
277 stars 11 forks source link

FileNotFoundError: [Errno 2] No such file or directory: './data/scannet/planes_9/normal_anchors.npy' #2

Closed ChiyuanFeng closed 2 years ago

ChiyuanFeng commented 2 years ago

FileNotFoundError: [Errno 2] No such file or directory: './data/scannet/planes_9/normal_anchors.npy'

I was trying to run the demo with demo dataset. python demo.py --cfg ./config/demo.yaml But I got the above error. Since I was not trying to use scannet, this should not be a problem,right?

ymingxie commented 2 years ago

Oops, yes actually the normal_anchors.npy is generated in the process of generating scannet gt.
If you didn't run data preparation for ScanNet, you need to download normal anchors, and change the NORMAL_ANCHOR_PATH in demo.yaml.
Thanks!

ChiyuanFeng commented 2 years ago

Oops, yes actually the normal_anchors.npy is generated in the process of generating scannet gt. If you didn't run data preparation for ScanNet, you need to download normal anchors, and change the NORMAL_ANCHOR_PATH in demo.yaml. Thanks!

Much appreciated!