gpt4 book ai didi

C++ openGL - 获取和设置像素的函数

转载 作者:行者123 更新时间:2023-11-28 06:26:58 26 4
gpt4 key购买 nike

我们得到了一些代码来完成一项任务。我无法确定为什么 get 在 .h 文件中而 set 在 .cpp 文件中。当我在我的纹理类中调用 theTexMap.GetRgbPixel(x, y, r, g, b); 时,它无法在 .h 文件中找到 GetRgbPixel 函数(很明显)。可能需要将 get 添加到 RgbImage.cpp 中?有人有时间解释一下吗?看起来它完全内置在 .h 中用于 setter/getter ,所以我不确定为什么我必须添加此功能。当 .h 中已经有很多 GetRgbPixel 函数时,我需要在多大程度上添加它?

/*********************************************************************
* SetRgbPixel routines allow changing the contents of the RgbImage. *
*********************************************************************/

void RgbImage::SetRgbPixelf( long row, long col, double red, double green, double blue )
{
SetRgbPixelc( row, col, doubleToUnsignedChar(red),
doubleToUnsignedChar(green),
doubleToUnsignedChar(blue) );
}

void RgbImage::SetRgbPixelc( long row, long col,
unsigned char red, unsigned char green, unsigned char blue )
{
assert ( row<NumRows && col<NumCols );
unsigned char* thePixel = GetRgbPixel( row, col );
*(thePixel++) = red;
*(thePixel++) = green;
*(thePixel) = blue;
}

RbgImage.h文件代码。

// Returned value points to three "unsigned char" values for R,G,B
inline const unsigned char* RgbImage::GetRgbPixel( long row, long col ) const
{
assert ( row<NumRows && col<NumCols );
const unsigned char* ret = ImagePtr;
long i = row*GetNumBytesPerRow() + 3*col;
ret += i;
return ret;
}

inline unsigned char* RgbImage::GetRgbPixel( long row, long col )
{
assert ( row<NumRows && col<NumCols );
unsigned char* ret = ImagePtr;
long i = row*GetNumBytesPerRow() + 3*col;
ret += i;
return ret;
}

inline void RgbImage::GetRgbPixel( long row, long col, float* red, float* green, float* blue ) const
{
assert ( row<NumRows && col<NumCols );
const unsigned char* thePixel = GetRgbPixel( row, col );
const float f = 1.0f/255.0f;
*red = f*(float)(*(thePixel++));
*green = f*(float)(*(thePixel++));
*blue = f*(float)(*thePixel);
}

inline void RgbImage::GetRgbPixel( long row, long col, double* red, double* green, double* blue ) const
{
assert ( row<NumRows && col<NumCols );
const unsigned char* thePixel = GetRgbPixel( row, col );
const double f = 1.0/255.0;
*red = f*(double)(*(thePixel++));
*green = f*(double)(*(thePixel++));
*blue = f*(double)(*thePixel);
}

最佳答案

内联函数应该在标题中定义,所以这不是问题。 inline 告诉编译器无论在哪里调用函数,它都会用函数中的实际代码替换对函数的调用。它可以用作速度优化,但 inline 实际上只是对编译器的提示。最终由编译器决定它要做什么。

您的问题可能是 GetRgbPixel 接受了 redgreenblue 参数的指针,因为那是它返回值的地方。

你会想做这样的事情:

float r, g, b;
theTexMap.GetRgbPixel(x, y, &r, &g, &b);

& 运算符获取变量的地址,将其转换为指针并允许 GetRgbPixel 函数将值返回给这些参数。

关于C++ openGL - 获取和设置像素的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28357545/

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