Dataloader for sequence of images each with 100 frames

I have a sequence of images of length 100 extracted from a video and saved locally. I’m trying to do frame to frame prediction for arbitrary steps in the future. How do i create a dataloader that loaders a sequence of images?

You might have to write a custom dataset for your case.

You can have a look at the code in this repo:

1 Like