Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将使用 Imgproc.findContours 找到的 MatOfPoint 转换为(二进制)Mat。我知道有一种方法可以进行反向转换(只需使用构造函数 MatOfPoint(Mat m)),但是有没有内置的方法来进行这种转换?如果不是,那么逐个元素转换的正确方法是什么。谢谢!
您不需要任何转换器。MatOfPoint 是 Mat 的子类:
来自 OpenCV 源代码:
public class MatOfPoint extends Mat