This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import imageio.v3 as iio | |
#import the imageio on my macbook terminal | |
filenames = ['/Users/chloe/Desktop/chicklet1.png','/Users/chloe/Desktop/chicklet2.png', '/Users/chloe/Desktop/chicklet3.png', '/Users/chloe/Desktop/chicklet4.png'] | |
#enter the image i want to use which located on my laptop and i downloaded them from sonnynomnom's github (thank you for the tutorial) | |
images = [ ] | |
#an empty list to store the actual image data | |
for filename in filenames: |