I have a lot of jpeg images stored on my hard drive that I would like to read and convert to arrays using skimage.io.imread
I would like to be able to do something like this:
import os
from skimage import io
os.chdir('C:/Users/HP User/Desktop/')
img = io.imread('filename.jpg')
When I run it I get the error message:
No such file or directory: 'C:/Users/HP User/Desktop/'