Python images processing -recap

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • alf

    #1

    Python images processing -recap

    Hi,

    I try to summarize what is available in python for graphical images
    processing. So far I found:

    -PythonMagic
    -PIL
    -SDL_image


    Are all supported, which is most mature, in which I could perform for
    instance 'Ken Burns effect' or light filling operations. Is there
    anything else?


    --
    alf
  • Fredrik Lundh

    #2
    Re: Python images processing -recap

    alf wrote:
    Are all supported, which is most mature, in which I could perform for
    instance 'Ken Burns effect'
    that's a display effect, not an image effect. you need a display (or
    animation) library for that.

    </F>

    Comment

    • alf

      #3
      Re: Python images processing -recap

      Fredrik Lundh wrote:
      alf wrote:
      >
      >Are all supported, which is most mature, in which I could perform for
      >instance 'Ken Burns effect'
      >
      >
      that's a display effect, not an image effect. you need a display (or
      animation) library for that.
      >
      In fact I want to generate a sequence of BMPs and feed mpeg decoder with it.

      A.

      Comment

      Working...