-
Notifications
You must be signed in to change notification settings - Fork 16
Description
I once encountered a problem when preprocessing the scannetv2 dataset. I tried to solve this problem, but I'm not sure whether my solution is reasonable. I'd like to discuss it with you.
When I execute the command python batch_ load_ scannet_ data.py, an error occurred.
I read the file batch_load_scannet_data.py and found that the function of the file is to select the corresponding folder in the directory data/scannet/scans/ for data processing according to the directory name in the file data/scannet/meta_data/scannetv2.txt and save the generated results in the directory data/scannet/scannet_data/.
I don't know if my understanding is correct.
Then, I read the file data/scannet/meta_data/scannetv2.txt and found that it contains 806 scenes. Directory data/scannet/scans/ contains only 706 scenes for train and val. I think the problem is that there is a mismatch between the two.
So I copied all the files in directory data/scannet/scans_test/ to directory data/scannet/scans/. At this point, executing the command python batch_load_scannet_data.py can work normally.
I want to know, am I right in this way? Looking forward to your reply.