-
-
Notifications
You must be signed in to change notification settings - Fork 372
Open
Description
The provided command ic = io.ImageCollection('..\images*.png:..\images*.jpg') is not working in python 3.9
although an append of files is working by seprately reading two ic individually, enumerating the appended ic wont show the jpg files.
ic1 = io.ImageCollection('../images/*.png')
ic2 = io.ImageCollection('../images/*.jpg')
#append ic1 files to ic2
for images in ic1.files:
ic2.files.append(images)
print('Type:', type(ic2))
ic2.files
Metadata
Metadata
Assignees
Labels
No labels