Opencv 发现轮廓 findContours
Posted herd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Opencv 发现轮廓 findContours相关的知识,希望对你有一定的参考价值。
vector<vector<Point>> vec_p;
vector<Vec4i> vec_4f;
findContours(img_canny1, vec_p, vec_4f,RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0));
drawContours(img3, vec_p, i, color_1, 2, 8, vec_4f, 0, Point(0, 0));
以上是关于Opencv 发现轮廓 findContours的主要内容,如果未能解决你的问题,请参考以下文章