使用reinterpret_cast将1D动态数组转换为IplImage的imageData数据类型

时间:2013-04-05 12:54:43

标签: c++ opencv casting

我使用此代码段将IplImage数据转换为动态数组。

unsigned char *data = reinterpret_cast <unsigned char*> (image->imageData);

我该如何反过来?

请帮忙!

1 个答案:

答案 0 :(得分:0)

unsigned char * entrypoint; ... image-&gt; imageData = entrypoint;

确保更新: 图像 - &GT; widthStep, 图像 - &GT;宽度, 图像 - &GT;高度, image-&gt; nChannels等