gpt4 book ai didi

c++ - 将指针指向的数据复制到另一个指针

转载 作者:行者123 更新时间:2023-11-28 02:56:22 25 4
gpt4 key购买 nike

我看过一些类似的问题,但没有解决方案适用于我的情况。

我有一个类具有持续运行的更新功能。此函数有一个 unsigned short* 参数,其中包含图像的二维数据,每次调用 update 时都不同。在执行开始时,我想将第一帧数据保存在单独的 unsigned short* 中,并且此数据必须在所有执行过程中都有效。

//setup在开始执行时运行一次

void Process::setup() 
{
...
_firstFrame = new unsigned short; //_firstFrame is an unsigned short* private variable from the class

return;
}

void Process::update(unsigned short* frame)
{
//-- Performing an initial calculation before any further processing
if (!_condition)
{
//some processing that changes condition to true when criteria is met
if (condition)
memcpy(_firstFrame, frame, sizeof(640*480*sizeof(unsigned short)));
//each frame has 640*480 dimensions and each element is an unsigned short

return;
}

//further processing using frame
}

现在,_firstFrame 应该始终保留来自满足条件后产生的帧的数据,但 _firstFrame 仅包含零。有帮助吗?

最佳答案

您需要一个数组,但您总是需要它,因此没有必要动态分配它。

你还需要初始化它,恰好一次,所以你需要一些方法来跟踪它。当前,您(尝试)在不知道应该放入什么时分配您的第一帧。

class Process {
bool got_first;
unsigned short first_frame[640*480];

public:
Process() : got_first(false) {}

void update(unsigned short *frame) {
if (!got_first) {
memcpy(first_frame, frame, sizeof(first_frame));
got_first = true;
}
}
};

关于c++ - 将指针指向的数据复制到另一个指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21883373/

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