I am currently working on a project. For this I have taken pictures and saved them in a folder.
The created image files are always called 0a0e69f4-c3c9-11eb-908c.jpg
. Now I want to convert the created images into a CSV file. I read the pictures with cv2.
image = cv2.imread("a0e69f4-c3c9-11eb-908c.jpg")
My question is how can I output the complete images to a csv file with a run method? If I manually enter the path of each image in the ``image = cv2.imread("Output_Images")``` it works. Since there are too many images, I want to convert the complete images into a CSV file with one run click. How can I do that?