前言:
windows平台使用OpenCV的findContours函数时,会出现崩溃问题。上次使用opencv3.10时,发现了这个问题。 网上找了很多解决方案都不行,最后参考这位大佬解决了这个问题。
最近把项目所用的opencv版本更新到了4.5,没想到这个bug,还没有被解决。由于opencv的API发生了变动,大佬提供的代码不兼容opencv4.5。我进行了一些改动。
主要是包含了一些必备的头文件和两个数据类型转换。
code
#include "opencv2/opencv.hpp"
#include <core/types_c.h>
#include <core/core_c.h>
#include <imgproc/imgproc_c.h>
#pragma once
#include <vector>
using namespace std;
using namespace cv;
void myFindContours(const Mat& src, vector<vector<Point>>& contours, vector<Vec4i>& hierarchy,int retr, int method , Point offset);
void myFindContours(const Mat& src, vector<vector<Point>>& contours, vector<Vec4i>& hierarchy,
int retr = RETR_LIST, int method = CHAIN_APPROX_SIMPLE, Point offset = Point(0, 0))
{
CvMat c_image = cvMat(src);
MemStorage storage(cvCreateMemStorage());
CvSeq* _ccontours = 0;
cvFindContours(&c_image, storage, &_ccontours, sizeof(CvContour), retr, method, cvPoint(offset.x, offset.y));
if (!_ccontours)
{
contours.clear();
return;
}
Seq<CvSeq*> all_contours(cvTreeToNodeSeq(_ccontours, sizeof(CvSeq), storage));
int total = (int)all_contours.size();
contours.resize(total);
SeqIterator<CvSeq*> it = all_contours.begin();
for (int i = 0; i < total; i++, ++it)
{
CvSeq* c = *it;
((CvContour*)c)->color = (int)i;
int count = (int)c->total;
int* data = new int[count * 2];
cvCvtSeqToArray(c, data);
for (int j = 0; j < count; j++)
{
contours[i].push_back(Point(data[j * 2], data[j * 2 + 1]));
}
delete[] data;
}
hierarchy.resize(total);
it = all_contours.begin();
for (int i = 0; i < total; i++, ++it)
{
CvSeq* c = *it;
int h_next = c->h_next ? ((CvContour*)c->h_next)->color : -1;
int h_prev = c->h_prev ? ((CvContour*)c->h_prev)->color : -1;
int v_next = c->v_next ? ((CvContour*)c->v_next)->color : -1;
int v_prev = c->v_prev ? ((CvContour*)c->v_prev)->color : -1;
hierarchy[i] = Vec4i(h_next, h_prev, v_next, v_prev);
}
storage.release();
}
总结
大佬太强了。膜拜,学习!
大佬原文链接:
https://blog.csdn.net/amani_liu/article/details/87932141
|