如何使用NumPy高效地为大灰度图像着色(在一组RGBA颜色点之间混合)

2024-05-08 04:27:26 发布

您现在位置:Python中文网/ 问答频道 /正文

我已经做了一个配方来着色和添加一个alpha通道到灰度图像。这是我第一次尝试使用numpy。使用30万像素的测试图像(在我的1.8GHz机器上只需2.3秒)就足够了:

current code is efficient enough for a 512x512 image

但对于700万像素的图像,速度太慢(更像是每张图像一分钟)。如何使代码更有效?它为每幅图像制作了256个numpy面具,我想这可能不是最好的方法。你知道吗

#!/usr/bin/env python3

from PIL import Image
import numpy


# a test image is loaded and converted to a numpy array
img = Image.open( 'lena.jpg' ).convert( 'RGBA' )
img = numpy.array( img )

# color point objects represent how pixels with a specific luminescence are to colourized
class ColorPoint():
    def __init__( self, luminescence=0, red=0, green=0, blue=0, alpha=255 ):
        self.luminescence = luminescence
        self.red = red
        self.green = green
        self.blue = blue
        self.alpha = alpha

# colour points are stored in a list, defining the colorization
color_points = []
color_points += [ ColorPoint( luminescence=0, red=255 ) ]
color_points += [ ColorPoint( luminescence=85, green=255 ) ]
color_points += [ ColorPoint( luminescence=170, blue=255 ) ]
color_points += [ ColorPoint( luminescence=255, alpha=0 ) ]

if color_points[0].luminescence!=0 or color_points[-1].luminescence!=255:
    print( 'color points do not span full luminescence range!' )
    sys.exit()

# red, green and blue, alpha values are read in from the numpy array
red, green, blue, alpha = img[:,:,0], img[:,:,1], img[:,:,2], img[:,:,3]

for luminescence in range( 256 ):
    # the luminescence value is either equal to that of a colour point or falls inbetween two
    cp = next((x for x in color_points if x.luminescence==luminescence), None)

    if( cp ):
        # the current luminescence value matches a color point exactly
        new_red = cp.red
        new_green = cp.green
        new_blue = cp.blue
        new_alpha = cp.alpha

    else:
        # find the color points which the the current luminescence value lies between
        start_cp = next((x for x in reversed(color_points) if x.luminescence<luminescence), None)
        end_cp = next((x for x in color_points if x.luminescence>luminescence), None)

        # this factor represents the position between the two colour points
        factor = ( luminescence - start_cp.luminescence ) / ( end_cp.luminescence - start_cp.luminescence )

        # new RGBA values are set based on the two colour points and the position between the two       
        new_red = start_cp.red + (end_cp.red-start_cp.red)*factor
        new_green = start_cp.green + (end_cp.green-start_cp.green)*factor
        new_blue = start_cp.blue + (end_cp.blue-start_cp.blue)*factor
        new_alpha = start_cp.alpha + (end_cp.alpha-start_cp.alpha)*factor


    # a mask is created for the current luminescence value used to apply the new values
    mask = ( red == luminescence ) & ( green == luminescence ) & ( blue == luminescence )
    img[:,:,:4][mask] = [ new_red, new_green, new_blue, new_alpha ]

# convert back to PIL image and show
img = Image.fromarray( img )
img.show()

Tags: theinselfalphanumpyimgnewgreen
1条回答
网友
1楼 · 发布于 2024-05-08 04:27:26

您应该能够使用一个插值例程,例如griddata。下面是一个例子,我使用了一个随机查找表,它对应于代码中的color_points。你知道吗

>>> from scipy.interpolate import griddata
>>> LUT = np.random.random_sample((256, 3))
>>> griddata(np.arange(256), LUT, image)

要在代码中使用它,您需要构建一个具有灰度/发光值的1d数组和另一个具有相应rgb值的2d数组。这是griddata的前两个参数。你知道吗

相关问题 更多 >