1

我很难找到使用 imatest 制作的以下情节的背景。基本上我想知道的是,我如何或从哪里可以找到这个情节的背景。imatest 网站提到,图表的颜色是在恒定的 Luminance L* = 90和varing 下生成的a* and b* from -80 to +80。我一直在寻找 Lab 颜色生成器,但所有软件都会生成彩色点。但我想通过改变 a 和 b 值来获得连续图像。任何的想法?

在此处输入图像描述

4

2 回答 2

2

使用matlab您可以简单地将您的 cielab 空间转换为 RGB 空间:

range = -80:0.5:80;                            % a,b range, change the step to change the size of the output image.
L     = 100*ones(size(range,2),size(range,2)); % L intensity
[b,a] = meshgrid(range);                       % generate a 2D grid
Lab   = cat(3,L,a,b);                          % create the 3D Lab array
I     = lab2rgb(rot90(Lab));                   % Lab -> RGB
imshow(I)                                      % Display the result

我们得到:

在此处输入图像描述

于 2020-12-21T13:33:09.727 回答
0

只是为了好玩,如果有人想要 Python OpenCV版本,我做了一个这样的:

#!/usr/bin/env python3

import cv2
import numpy as np

# Set size of output image
h, w = 500, 500

# Create "L" channel, L=90
L = np.full((h,w), 90.00, np.float32)

# Create "a" channel, -80 to +80
a = np.linspace(-80,80,w,endpoint=True,dtype=np.float32)
a = np.resize(a,(h,w))

# Create "b" channel by rotating "a" channel 90 degrees
b = cv2.rotate(a, cv2.ROTATE_90_COUNTERCLOCKWISE)

# Stack the 3-channels into single image and convert from Lab to BGR
res = np.dstack((L,a,b))
res = cv2.cvtColor(res, cv2.COLOR_LAB2BGR)

# Save result
cv2.imwrite('result.png', (res*65535).astype(np.uint16))

在此处输入图像描述

于 2020-12-22T10:17:48.773 回答