arranges to? (before re-arranging them)
if u have stored them all in one folder this should work assuming they are correctly arranged:
# this reads all images from a dir
import os
import matplotlib.pyplot as plt
images = [plt.imread("DIR_OF_IMAGES/"+i) for i in os.listdir("DIR_OF_IMAGES")]
# further info is required for a complete code!
I cut a video into 80 frames and then i want to arrange those frames in such a way that no frame repeats twice.i.e All frames should be unique.
Обсуждают сегодня