How do I ensure I read my files using the exact file path as provided by Windows? For instance, this works:
myimg<-image_read("C:\\Users\\Nelson\\Desktop\\hypo.jpg")
But Not this:
myimg<-image_read("C:\Users\Nelson\Desktop\hypo.jpg")
What is the reason behind this?