Opencv在运行一个简单程序时抛出了一个奇怪的错误

Opencv throwing a weird error running a simple program

本文关键字:一个 错误 简单 运行 Opencv 程序      更新时间:2023-10-16

我编译了这个简单的opencv代码:

#include "opencv2/core/core.hpp"        
#include "opencv2/highgui/highgui.hpp"  
#include <boost/random.hpp>
#include <ctime>
#include <time.h>
#include <stdlib.h>
#include <math.h>
#include <iostream>
/*Compile using 
g++ -I /usr/local/boost CreateShares.cpp -o createShares `pkg-config --cflags --libs opencv` 
*/
using namespace cv;
class CreateShares
{
private:
    cv::Mat CoreImage;
    cv::Mat CoreImageR;
    cv::Mat CoreImageG;
    cv::Mat CoreImageB; 
    cv::Mat share0;
    cv::Mat share1;
    cv::Mat share2;
    cv::Mat share3;
public:
    CreateShares();
    CreateShares(std::string path);
    void showCoreImage();
    void showCoreImageR();
    void showCoreImageG();
    void showCoreImageB();
};
CreateShares::CreateShares()
{
}
CreateShares::CreateShares(std::string path)
{
    CoreImage = cv::imread(path, 1);
    if (CoreImage.empty())
    {
        std::cout<<"Could not read image !"<<std::endl;
        return;
    }
    std::vector<cv::Mat> temp_mat_vector; 
    cv::split(CoreImage, temp_mat_vector);
    //CoreImageB = (temp_mat_vector[0]).clone();
    temp_mat_vector[0].copyTo(CoreImageB);
    temp_mat_vector[1].copyTo(CoreImageB);
    temp_mat_vector[2].copyTo(CoreImageB);

}
void CreateShares::showCoreImage()
{
    cv::namedWindow("Core Image", WINDOW_AUTOSIZE);
    cv::imshow("Core Image", CoreImage);
}
void CreateShares::showCoreImageR()
{
    cv::namedWindow("Core Image R", WINDOW_AUTOSIZE);
    cv::imshow("Core Image R", CoreImageR);
}
void CreateShares::showCoreImageG()
{
    cv::namedWindow("Core Image G", WINDOW_AUTOSIZE);
    cv::imshow("Core Image G", CoreImageG);
}
void CreateShares::showCoreImageB()
{
    cv::namedWindow("Core Image B", WINDOW_AUTOSIZE);
    cv::imshow("Core Image B", CoreImageB);
}
int main()
{
    std::string path = "/home/r/l33t/Secret Sharing/nature.jpg";
    CreateShares* cs = new CreateShares(path);
    cs->showCoreImage();
    return 0;
}

然后我继续运行它,但我得到了一个奇怪的错误:

r@r-HP-Mini-110:~/l33t/Secret Sharing$ g++ -g -I /usr/local/boost CreateShares.cpp -o createShares `pkg-config --cflags --libs opencv`
r@r-HP-Mini-110:~/l33t/Secret Sharing$ ./createShares 
OpenCV Error: Bad flag (parameter or structure field) (Unrecognized or unsupported array type) in cvGetMat, file /build/buildd/opencv-2.3.1/modules/core/src/array.cpp, line 2482
terminate called after throwing an instance of 'cv::Exception'
  what():  /build/buildd/opencv-2.3.1/modules/core/src/array.cpp:2482: error: (-206) Unrecognized or unsupported array type in function cvGetMat
Aborted (core dumped)

我正在粘贴gdb输出,直到出现错误,以帮助您分析:

(gdb) next
[New Thread 0xb4af2b40 (LWP 17550)]
[New Thread 0xb40ffb40 (LWP 17551)]
65  s::showCoreImage()
(gdb) step
CreateShares::showCoreImageR (this=0x80516e8) at CreateShares.cpp:78
78  ", CoreImageR);
(gdb) step
79  G()
(gdb) step
OpenCV Error: Bad flag (parameter or structure field) (Unrecognized or unsupported array type) in cvGetMat, file /build/buildd/opencv-2.3.1/modules/core/src/array.cpp, line 2482
terminate called after throwing an instance of 'cv::Exception'
  what():  /build/buildd/opencv-2.3.1/modules/core/src/array.cpp:2482: error: (-206) Unrecognized or unsupported array type in function cvGetMat

Program received signal SIGABRT, Aborted.
0xb7fdd424 in __kernel_vsyscall ()
(gdb) 

有什么想法吗?我的代码有什么问题吗,或者opencv有什么问题,或者我没有在某个地方包含一些opencv路径,或者openpv没有正确安装?我没有主意了。请帮帮我!

这是一个数据类型不匹配的问题

相关文章: