(self, split)
| 41 | |
| 42 | class Dataset(object): |
| 43 | def __init__(self, split): |
| 44 | self.all_videos = get_image_list(args.data_root, split) |
| 45 | |
| 46 | def get_frame_id(self, frame): |
| 47 | return int(basename(frame).split('.')[0]) |
nothing calls this directly
no test coverage detected