gpt4 book ai didi

c++ - 将我的数组移动到 Mat 并使用 openCV 显示图像

转载 作者:太空宇宙 更新时间:2023-11-03 22:32:29 25 4
gpt4 key购买 nike

我在使用 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);

}

最佳答案

问题是您正在使用构造函数 Mat::Mat(int rows, int cols, int type, void* data) 以及指向 16 位数据(unsigned short int)的指针,但是您正在指定类型 CV_8U(8 位)。因此,您的 16 位像素的第一个字节成为 OriginalMat 中的第一个像素,第一个像素的第二个字节成为 OriginalMat 中的第二个像素,依此类推。

你需要创建一个16位的Mat,如果你想显示它,然后将它转换成8位,例如:

int main(int argc, char *argv[])
{
long int VImageSize = 710*710;
int NumberofPlanes = 78;
int FrameNum = 150;

/////Load PlaneStack/////
unsigned short int *PlaneStack = new unsigned short int[NumberofPlanes*VImageSize];
Load_Vimage(PlaneStack, Path, NumberofPlanes);

// Get a pointer to the plane we want to view
unsigned short int *testplane = &PlaneStack[710*710*40];

// "move" single plane to a mat file
// actually nothing gets moved, OriginalMat will just contain a pointer to your data.
Mat OriginalMat(710,710,CV_16UC1, &testplane) ;

double scale_factor = 1.0 / 256.0;
Mat DisplayMat;
OriginalMat.convertTo(DisplayMat, CV_8UC1, scale_factor);

namedWindow("Original");
imshow("Original", DisplayMat);
}

关于c++ - 将我的数组移动到 Mat 并使用 openCV 显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19895274/

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