Подтвердить что ты не робот

Создание анимированного GIF в Python

Я пытаюсь сгенерировать анимированный GIF с помощью image2gif.py(pastebin к самому последнему verson: bit.ly/XMMn5h).

Я использую этот Python script:

__author__ = 'Robert'
from images2gif import writeGif
from PIL import Image
import os

file_names = sorted((fn for fn in os.listdir('.') if fn.endswith('.gif')))
#['animationframa.png', 'animationframb.png', ...] "

images = [Image.open(fn) for fn in file_names]

size = (150,150)
for im in images:
    im.thumbnail(size, Image.ANTIALIAS)

print writeGif.__doc__

filename = "my_gif.GIF"
writeGif(filename, images, duration=0.2)

Однако я получаю следующую ошибку:

File "C:\Python27\lib\images2gif.py" , line 418, in writeGifToFile
globalPalette = palettes[ occur.index(max(occur)) ] ValueError: max() 
arg is an empty sequence

Мне кажется, что происхождение пусто. Что не так, и есть ли лучший способ?

4b9b3361

Ответ 1

OK Я проверил ваш точный код на двух разных машинах, и он отлично работает на обоих. Одна машина Ubuntu 12.04, а другая - Windows XP. Они оба используют Python 2.7 и последнюю версию images2gif, которую я скачал здесь. Я рекомендую следующее:

  • проверьте, какую версию python и библиотеки вы используете, попробуйте и получите последние версии.
  • проверить его на другой машине.
  • попробуйте и удалите python и все библиотеки и попробуйте и заново установите

Ответ 2

Python, создайте .gif из numpy ndarray из numpy ndarrays, представляющих изображения:

import os
import numpy as np
from moviepy.editor import ImageSequenceClip
#Installation instructions: 
#    pip install numpy
#    pip install moviepy
#    Moviepy needs ffmpeg tools on your system
#        (I got mine with opencv2 installed with ffmpeg support)

def create_gif(filename, array, fps=10, scale=1.0):
    """creates a gif given a stack of ndarray using moviepy
    Parameters
    ----------
    filename : string
        The filename of the gif to write to
    array : array_like
        A numpy array that contains a sequence of images
    fps : int
        frames per second (default: 10)
    scale : float
        how much to rescale each image by (default: 1.0)
    """
    fname, _ = os.path.splitext(filename)   #split the extension by last period
    filename = fname + '.gif'               #ensure the .gif extension
    if array.ndim == 3:                     #If number of dimensions are 3, 
        array = array[..., np.newaxis] * np.ones(3)   #copy into the color 
                                                      #dimension if images are 
                                                      #black and white
    clip = ImageSequenceClip(list(array), fps=fps).resize(scale)
    clip.write_gif(filename, fps=fps)
    return clip

randomimage = np.random.randn(100, 64, 64)       
create_gif('test.gif', randomimage)                 #example 1

myimage = np.ones(shape=(300, 200))
myimage[:] = 25
myimage2 = np.ones(shape=(300, 200))
myimage2[:] = 85
arrayOfNdarray = np.array([myimage, myimage2])

create_gif(filename="grey_then_black.gif",          #example 2
           array=arrayOfNdarray, 
           fps=5, 
           scale=1.3)

Отпечатки:

[MoviePy] Building file test.gif with imageio
100%|██████████████████████████████████████████| 100/100 [00:00<00:00, 905.27it/s]

[MoviePy] Building file grey_then_black.gif with imageio
 67%|█████████████████████████▎                | 2/3 [00:00<00:00, 65.65it/s]

Ответ 3

В конструкторе списка

    (fn for fn in os.listdir('.') if fn.endswith('.gif'))

endswith чувствителен к регистру, поэтому, если у вас все изображения GIF, они не будут найдены, и вы получите

    ValueError: max() arg is an empty sequence

ошибка.

Я предлагаю использовать

    (fn for fn in os.listdir('.') if fn.endswith('.gif') or fn.endswith('.GIF'))

для успеха с этим. Кроме того, неплохо создать анимированный gif файл в родительском (или хотя бы другом) каталоге.