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?
new_image =statement, and theglTexImage2dcall. Hopefully, something will jump out just from that. – AdamKG Feb 16 at 22:04