I want to analyse my images that I store as follow:
jpeg <- list.files(folder)
As observed R stores picture_1, picture_10, picture_11..., picture_2, etc. So when I analyse I do not know which picture it is.
I would like to store in order to have: picture_1, picture_2.... and be able to perform my analyse.
How to do it ?