我目前正在编写我的第一个C ++程序,到目前为止,即使它没有完成,我想在处理所有编译器错误后尝试一些测试运行。我将在以下链接中提供大部分代码: http://pastie.org/8196032 http://pastie.org/8196025 由于我只允许发布2个链接,因此缺少ImageComparison的标题,我认为这不是很重要。 stdafx.h包括必需的opencv和std libs。 我跑了gdb并得到了这个结果:
Program received signal SIGSEGV, Segmentation fault.
0x000000000040655c in cv::Mat::release() ()
(gdb) bt
>#0 0x000000000040655c in cv::Mat::release() ()
>#1 0x0000000000406410 in cv::Mat::operator=(cv::Mat const&) ()
>#2 0x00000000004052ed in ImageComparison::LoadImages() ()
>#3 0x000000000040518e in ImageComparison::DoImCo() ()
#4 0x0000000000405019 in main ()
哪位不给我任何线索,这里有什么问题。 如果我的问题只是为了转储,我道歉,但我感谢任何建议。
答案 0 :(得分:3)
在行中:
vector<Mat> images;
和
images [i-1] = imread( “的ImageData /” + m_object_type + “/” + m_object_type + “ - ” +缓冲液+, “JPEG”。 1);
您已声明了向量images
,但其大小仍未指定。因此,您无法根据索引分配其元素。相反,您可以push_back
新的Mat
元素:
images.push_back(imread( “的ImageData /” + m_object_type + “/” + m_object_type + “ - ” “JPEG” +缓冲液+, 1));
或者,您可以初始化大小为images
m_number_of_images
vector<Mat> images(m_number_of_images);
答案 1 :(得分:2)
char* buffer;
LoadImages
中的这一行需要是一个实际数组,或者至少需要new
获取的内容。
例如:
char buffer[100];