python - 通过python算法将Square Hald clut转换为Classic Hald clut

标签 python android numpy opencv cube

我的问题是:我有一个 Square Hald 8 512x512px,我想将其转换为 .CUBE 文件

我正在尝试反转这个简单的Python算法,该算法可以很好地转换Classic Hald -> Square Hald:

import numpy, cv2

hald = cv2.imread("classic_hald_8.png")

size = int(hald.shape[0] ** (1.0/3.0) + .5)

clut = numpy.concatenate([
    numpy.concatenate(hald.reshape((size,size,size**2,size**2, 3))[row], axis=1)
    for row in range(size)
])

cv2.imwrite("square_hald_8.png", clut)
import imageio as iio, numpy as np
imagen=iio.imread("Classic_Hald_8.png")

r,g,b=(imagen[:,:,0]).reshape(-1), (imagen[:,:,1]).reshape(-1), (imagen[:,:,2]).reshape(-1)
np.savetxt("Classic_Hald_8.cube",X=np.column_stack((r/255,g/255,b/255)),fmt='%1.6f', header="LUT_3D_SIZE 64", comments="")

我们需要 reshape 值(value)观。一些想法或建议?谢谢

更新2:感谢 GrossGrade 作者 Eugene Vdovin,我已经解决了。如果有人建议实现 3D 结构(也许用 numpy?)会被广泛接受。我对 python 很菜鸟

from PIL import Image

im = Image.open('test.png','r')
values = im.load()
hald_side_in_pixels = im.size[0]
hald_in_pixels = im.size[0]*im.size[0]
lutSize = int(hald_in_pixels ** (1.0/3.0) + .5) 

fr = [0.0]*hald_in_pixels
fg = [0.0]*hald_in_pixels
fb = [0.0]*hald_in_pixels

cubeIndex = 0
for y in range(hald_side_in_pixels):
 for x in range(hald_side_in_pixels):
  iR = cubeIndex % lutSize
  iG = y % lutSize
  iB = int(x/lutSize)+(int(y/lutSize)*int(hald_side_in_pixels/lutSize))
  idx = iR * lutSize * lutSize + iG * lutSize + iB
  fr[idx],fg[idx],fb[idx] = values[x,y]  
  cubeIndex+=1


with open("test.cube", "w") as output:
 output.write("DOMAIN_MIN 0 0 0\nDOMAIN_MAX 1 1 1\nLUT_3D_SIZE " + str(lutSize) + '\n')
 for iB in range(lutSize):
  for iG in range(lutSize):
   for iR in range(lutSize):
    idx = iR * lutSize * lutSize + iG * lutSize + iB
    output.write((str("%.9f" % (fr[idx]/255)) + ' ' +  str("%.9f" % (fg[idx]/255)) + ' ' + str("%.9f" % (fb[idx]/255)))+ '\n')
output.close()

更新3:我遵循了建议,我用numpy创建了一个3D数组,它现在更干净了,但它比3x 1D数组慢了大约150ms,我发布了代码

from PIL import Image
import numpy as np

im = Image.open('test.png','r')
values = im.load()
hald_side_in_pixels = im.size[0]
lutSize = int((hald_side_in_pixels*hald_side_in_pixels) ** (1.0/3.0) + .5)

LUT = np.empty((lutSize,lutSize,lutSize), dtype=bytearray)
cubeIndex = 0
for y in range(hald_side_in_pixels):
 for x in range(hald_side_in_pixels):
  iR = cubeIndex % lutSize
  iG = y % lutSize
  iB = int(x/lutSize)+(int(y/lutSize)*int(hald_side_in_pixels/lutSize))
  LUT[iR,iG,iB]=values[x,y]
  cubeIndex+=1


with open("test1.cube", "w") as output:
 output.write("DOMAIN_MIN 0 0 0\nDOMAIN_MAX 1 1 1\nLUT_3D_SIZE " + str(lutSize) + '\n')
 for iB in range(lutSize):
  for iG in range(lutSize):
   for iR in range(lutSize):
    output.write((str("%.9f" % (LUT[iR,iG,iB][0]/255)) + ' ' +  str("%.9f" % (LUT[iR,iG,iB][1]/255)) + ' ' + str("%.9f" % (LUT[iR,iG,iB][2]/255)))+ '\n')
output.close()

最佳答案

这里是解析 HALD 图像的每个像素并将其值放入 3DLUT 的 C++ 代码,稍后将其保存到 CUBE 格式的文件中。该代码缺少一些东西以保持一切紧凑。希望这将帮助您理解索引算法,以便您可以自己在 Python 中实现它。

std::string formatstring(const char *Format, ...)
{
    if(Format == NULL || Format[0] == '\0') return "";
    static std::string Res;
    va_list args;
    va_start(args, Format);
    int len = _vscprintf(Format, args);
    Res.resize(len);
    vsprintf((char*)Res.data(), Format, args);
    va_end(args);
    return Res;
}

void convert_hald_to_cube()
{
    CLUT LUT; // you must implement a class to store 3DLUT data of any size

    // Here you getting your HALD image data into a 2D-array hald_colors
    // ...

    // Getting 3DLUT values from a HALD 2D-array
    int hald_side_in_pixels = 512;
    int lutSize = (int)(powf((float)hald_side_in_pixels*hald_side_in_pixels,1.f/3.f)+0.5f); // +0.5f is for rounding a positive value
    int iR,iG,iB;
    int cubeIndex = 0;
    for(int y=0; y<hald_side_in_pixels; ++y) 
    {
        for(int x=0; x<hald_side_in_pixels; ++x)
        {
            iR = cubeIndex % lutSize;
            iG = y % lutSize;
            iB = (x/lutSize)+((y/lutSize)*(hald_side_in_pixels/lutSize));
                        
            // Here you copy the hald_colors[x][y] color value to the 3DLUT voxel value at indexes {iR,iG,iB}
                        
            cubeIndex++;
        }
    }

    // Putting 3DLUT values to a CUBE file
    FILE *f = fopen("OutputCubeFile.cube", "w+");
    fputs("TITLE my cube file\n",f);                        
    fputs("DOMAIN_MIN 0 0 0\n",f);
    fputs("DOMAIN_MAX 1 1 1\n",f);
    std::string s = "LUT_3D_SIZE " + std::to_string((_ULonglong)lutSize) + "\n";
    fputs(s.c_str(),f);
    for(int iB=0; iB<lutSize; ++iB) 
    {
        for(int iG=0; iG<lutSize; ++iG) 
        {
            for(int iR=0; iR<lutSize; ++iR) 
            {
                float fr,fg,fb;
                
                // Here you copy the 3DLUT voxel value at indexes {iR,iG,iB} to the values fr,fg,fb
                
                std::string outputvalues = formatstring("%.9f %.9f %.9f\n",fr,fg,fb); 
                fputs(outputvalues.c_str(),f);
            }
        }
    }
    fclose(f);
}

关于python - 通过python算法将Square Hald clut转换为Classic Hald clut,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63762429/

相关文章:

android - 如何使 "ndk-build clean"继续出错

java - 为什么 Android API 要求结果参数而不是返回方法?

android - 如何在 Android 中截断具有淡入淡出效果的文本?

pandas - 什么是可能的 Pandas 基本/标量数据类型?

javascript - 访问影子 DOM 中的元素

python - 从 4 波段图像(光栅)中提取 RGB

python - numpy.piecewise 中的多个部分

python - Numpy:如何在数组数组中滚动 1 "row"

python - 如何防止颜色条随着热图高度变化而上下移动? Matplotlib/seaborn

python在不重复的情况下打印字符串中的常见项目