我在使用 opencv 显示图像时遇到问题。由于我的代码当前正在运行,我有将 78 个大小为 710X710 的无符号短裤图像加载到单个数组中的函数。我已经通过将数据写入文件并使用 imageJ 读取它来验证它的工作原理。我现在正在尝试从数组中提取单个图像帧并将其加载到 Mat 中,以便对其执行一些处理。现在我已经尝试了两种方法来做到这一点。如果我不尝试读取输出,代码将编译并运行,但如果我 cout<
我的问题是,如何从我的 78 个大小为 710*710 的大型一维数组中提取数据到单个 Mat 图像中。或者有没有更有效的方法可以将图像加载到尺寸为 710X710X78 的 3-D 垫子中,并根据需要对每个 710X710 切片进行操作?
int main(int argc, char *argv[])
{
Mat OriginalMat, TestImage;
long int VImageSize = 710*710;
int NumberofPlanes = 78;
int FrameNum = 150;
unsigned short int *PlaneStack = new unsigned short int[NumberofPlanes*VImageSize];
unsigned short int *testplane = new unsigned short int[VImageSize];
/////Load PlaneStack/////
Load_Vimage(PlaneStack, Path, NumberofPlanes);
//Here I try to extract a single plane image to the mat testplane, I try it two different ways with the same results
memcpy(testplane, &PlaneStack[710*710*40], VImageSize*sizeof(unsigned short int));
//copy(&PlaneStack[VImageSize*40],&PlaneStack[VImageSize*41], testplane);
// move single plane to a mat file
OriginalMat = Mat(710,710,CV_8U, &testplane) ;
//cout<<OriginalMat;
namedWindow("Original");
imshow("Original", OriginalMat);
}