We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e736da0 commit a93d0ceCopy full SHA for a93d0ce
datasets/flyingchairs.py
@@ -12,7 +12,7 @@ def make_dataset(dir, split=None):
12
root_filename = flow_map[:-9]
13
img1 = root_filename+'_img1.ppm'
14
img2 = root_filename+'_img2.ppm'
15
- if not (os.path.isfile(os.path.join(dir,img1)) or os.path.isfile(os.path.join(dir,img2))):
+ if not (os.path.isfile(os.path.join(dir,img1)) and os.path.isfile(os.path.join(dir,img2))):
16
continue
17
18
images.append([[img1,img2],flow_map])
0 commit comments