-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot transform image #14
Comments
Hi, i'm getting this error on transform image: Preparing videos and photos for transformationFileNotFoundError Traceback (most recent call last) 3 frames FileNotFoundError: No such file: '/content/first_order_model/aligned_images/photo-0_01.png' Please can you help? |
change the directory to : print('Preparing videos and photos for transformation') |
When I try to run 'Transform image'
it shows an error like this
FileNotFoundError Traceback (most recent call last)
in ()
8 source_images = []
9 for photoname in aligned_photolist:
---> 10 source_image = imageio.imread('aligned_images/' + photoname)
11 source_image = resize(source_image, (256, 256))[..., :3]
12 source_images.append(source_image)
3 frames
/usr/local/lib/python3.6/dist-packages/imageio/core/request.py in _parse_uri(self, uri)
271 # Reading: check that the file exists (but is allowed a dir)
272 if not os.path.exists(fn):
--> 273 raise FileNotFoundError("No such file: '%s'" % fn)
274 else:
275 # Writing: check that the directory to write to does exist
FileNotFoundError: No such file: '/content/first_order_model/aligned_images/photo-0_01.png'
I would really appreciate it if someone help me solve this
The text was updated successfully, but these errors were encountered: