I have a pyopengl program that blends a few images at runtime then applies them to some simple geometry, it works but is extremely slow, slower than i know it can be. The following code is what im using where image'n'_weight varies at runtime.

    img1 = PIL.Image.open(file_name1)
    image1 = numpy.array(list(img.getdata()), numpy.uint8)

    img2 = PIL.Image.open(file_name2)
    image2 = numpy.array(list(img.getdata()), numpy.uint8)

    img3 = PIL.Image.open(file_name3)
    image3 = numpy.array(list(img.getdata()), numpy.uint8)

...

    image1_weight = 0.2
    image2_weight = 1
    image3_weight = 0.5
    normalize = image1_weight + image2_weight + image3_weight
    new_image = (image1 * (image1_weight/normalize)) + (image2 * (image2_weight/normalize)) + (image3 * (image3_weight/normalize))

...

    glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1024, 1024, 0, GL_RGB, GL_UNSIGNED_BYTE, new_image)

Does anyone know how i should be doing this to speed it up

UPDATE: I'm almost certain that i should be doing the blending with multi textures, does anyone have any pointers on how to do this?

link|improve this question

Have you profiled it? The first step is to figure out where it's slow. – AdamKG Feb 16 at 21:55
sorry for being naive, im fairly new to this, how would i profile it? – jonathan topf Feb 16 at 21:59
Well, Python has profilers in the standard library, but they can get some getting used to. Here's something you can just drop into your code. I'd do a mark before & after the PIL block, the new_image = statement, and the glTexImage2d call. Hopefully, something will jump out just from that. – AdamKG Feb 16 at 22:04
great thanks ill try that! – jonathan topf Feb 16 at 22:09
3  
Well, at first glance I see you're blending the textures together on the CPU and then uploading the combined texture to the GPU. I'm sure with the pixel pushing power of modern GPUs, even multipass blending (not to mention multitexturing) the geometry you're drawing on the GPU will be blazing fast. – ananthonline Feb 16 at 22:20
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.