gpt4 book ai didi

c++ - 读取 16 位 DPX 像素数据

转载 作者:行者123 更新时间:2023-11-30 05:21:24 24 4
gpt4 key购买 nike

我正在尝试从一个 16 位 dpx 文件中读取像素数据,该文件是先前 git repo 的扩展名。 (因为它只支持 10 位)。

这是 dpx format summary

我正在使用这个 headercpp处理 header 信息并获取此类数据。

请注意,变量 _pixelOffset、_width、_height 和 _channels 基于 dpx 的标题信​​息。 pPixels 是一个 float* 数组:

#include <iostream>
#include <fstream>
#include <dpxHeader.h>

//First read the file as binary.
std::ifstream _in(_filePath.asChar(), std::ios_base::binary);

// Seek to the pixel offset to start reading where the pixel data starts.
if (!_in.seekg (_pixelOffset, std::ios_base::beg))
{
std::cerr << "Cannot seek to start of pixel data " << _filePath << " in DPX file.";
return MS::kFailure;
}

// Create char to store data of width length of the image
unsigned char *rawLine = new unsigned char[_width * 4]();

// Iterate over height pixels
for (int y = 0; y < _height; ++y)
{
// Read full pixel data for width.
if (!_in.read ((char *)&rawLine[0], _width * 4))
{
std::cerr << "Cannot read scan line " << y << " " << "from DPX file " << std::endl;
return MS::kFailure;
}

// Iterator over width
for (int x = 0; x < _width; ++x)
{
// We do this to flip the image because it's flipped vertically when read in
int index = ((_height - 1 - y) * _width * _channels) + x * _channels;

unsigned int word = getU32(rawLine + 4 * x, _byteOrder);

pPixels[index] = (((word >> 22) & 0x3ff)/1023.0);
pPixels[index+1] = (((word >> 12) & 0x3ff)/1023.0);
pPixels[index+2] = (((word >> 02) & 0x3ff)/1023.0);
}
}

delete [] rawLine;

这目前适用于 10 位文件,但由于我是按位操作的新手,所以我不确定如何将其扩展到 12 位和 16 位。任何人对我有任何线索或正确的方向吗?

最佳答案

这种文件格式有些全面,但如果您只针对已知的子集,那么扩展它应该不会太难。

从您的代码示例看来,您目前正在处理每个像素三个分量,并且这些分量填充为 32 位字。根据您提供的规范,在这种模式下,12 位和 16 位都将每个字存储两个组件。对于 12 位,每个分量的高 4 位是填充数据。您将需要三个 32 位字来获得六个颜色分量来解码两个像素:

    ...

unsigned int word0 = getU32(rawLine + 6 * x + 0, _byteOrder);
unsigned int word1 = getU32(rawLine + 6 * x + 4, _byteOrder);
unsigned int word2 = getU32(rawLine + 6 * x + 8, _byteOrder);

// First pixel

pPixels[index] = (word0 & 0xffff) / (float)0xffff; // (or 0xfff for 12-bit)
pPixels[index+1] = (word0 >> 16) / (float)0xffff;
pPixels[index+2] = (word1 & 0xffff) / (float)0xffff;

x++;

if(x >= _width) break; // In case of an odd amount of pixels

// Second pixel

pPixels[index+3] = (word1 >> 16) / (float)0xffff;
pPixels[index+4] = (word2 & 0xffff) / (float)0xffff;
pPixels[index+5] = (word2 >> 16) / (float)0xffff;

...

关于c++ - 读取 16 位 DPX 像素数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40164939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com