我有一个vector<vector<Point> >
X 但我需要将它传递给cvConvexityDefects
接受输入 a的函数CvArr*
。
我已经阅读了Convexity 缺陷 C++ OpenCv主题。它接受输入这些变量:
vector<Point>& contour, vector<int>& hull, vector<Point>& convexDefects
我无法使解决方案正常工作,因为我有一个船体参数 avector<Point>
并且我不知道如何将其转换为 a vector<int>
。
所以现在有两个问题!:)
如何将 a 转换vector<vector<Point> >
为 a vector<int>
?
提前谢谢,祝你有美好的一天!:)