neu-vi/PlanarRecon

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

Closed this issue · 2 comments

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?

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!

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!