这是OpenCV类型:
vector<Point> vectorPoint;
Mat mat;
上述类型的EMGU中的等效类型是什么?
答案 0 :(得分:1)
垫子;改为
Matrix<TDepth> mat;
位于Emgu.CV命名空间中。 TDepth将是float,int等。
vector vectorPoint;改为
VectorOfPoint vectorPoint;
位于Emgu.CV.Util
中我不确定VectorOfPoint最早的EMGU版本,但它不是2.2.1版本。这个帖子的最新版本是2.4.2,所以现在很可能。