About preparing training data
Created by: ChenxiTU
Thank you for sharing your nice work!
I used create_dataset.py to build the training dataset as you mentioned. But I find that 12 frames in each clip is not continuous.
Maybe L.69 in create_dataset.py should be modified:
images = os.listdir(os.path.join(root, file))
-> images = sorted(os.listdir(os.path.join(root, file)))
Or I misunderstood, the frame in each clip should not be continuous?