我正在尝试使用 TBB 来提高使用 OpenCV 的计算机视觉项目的性能。这是代码中给出访问冲突的部分。
#include <opencv/cv.h>
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "tbb/pipeline.h"
#include "tbb/tick_count.h"
#include "tbb/task_scheduler_init.h"
#include "tbb/tbb_allocator.h"
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
string file = "myimage.jpg";
Mat* mats2=tbb::tbb_allocator<Mat>().allocate(100);
for (int i = 0 ; i < 100 ; ++i)
{
mats2[i]=imread(file); <===== Access Violation
imshow("temp",mats3[i]);
waitKey(1);
}
}
为什么这是访问冲突?Mats2 不是 0 并且肯定分配给内存中的地址。我知道此链接中可以使用的其他功能,但我想知道导致此错误的 tbb_allocator 中发生了什么。如果与 malloc 或可扩展的_malloc 一起使用,代码不会出错。